AjaxControlToolkit.ComboBoxDesignerActionList.GetSortedActionItems C# (CSharp) Метод

GetSortedActionItems() публичный Метод

public GetSortedActionItems ( ) : System.ComponentModel.Design.DesignerActionItemCollection
Результат System.ComponentModel.Design.DesignerActionItemCollection
        public override DesignerActionItemCollection GetSortedActionItems()
        {
            var actionItems = new DesignerActionItemCollection();

            var propertyItem = GetPropertyItem("AppendDataBoundItems", "Append DataBound Items");
            if(propertyItem != null)
                actionItems.Add(propertyItem);

            propertyItem = GetPropertyItem("CaseSensitive", "Case Sensitive");
            if(propertyItem != null)
                actionItems.Add(propertyItem);

            propertyItem = GetPropertyItem("DropDownStyle", "DropDown Style");
            if(propertyItem != null)
                actionItems.Add(propertyItem);

            propertyItem = GetPropertyItem("AutoCompleteMode", "AutoComplete Mode");
            if(propertyItem != null)
                actionItems.Add(propertyItem);

            return actionItems;
        }