Ext.Net.NumberFieldActionList.GetSortedActionItems C# (CSharp) Method

GetSortedActionItems() private method

private GetSortedActionItems ( ) : System.ComponentModel.Design.DesignerActionItemCollection
return System.ComponentModel.Design.DesignerActionItemCollection
        public override DesignerActionItemCollection GetSortedActionItems()
        {
            this.AddPropertyItem(new DesignerActionPropertyItem("AllowDecimals", "AllowDecimals", "500", "Allow demcimals in the TextBox"));
            this.AddPropertyItem(new DesignerActionPropertyItem("AllowNegative", "AllowNegative", "500", "Allow negative numbers in the TextBox"));
            this.AddPropertyItem(new DesignerActionPropertyItem("AllowBlank", "AllowBlank", "500", "Ensure the length of the text is > 0"));
            this.AddPropertyItem(new DesignerActionPropertyItem("EmptyText", "Empty Text", "500", "Change the Text of the control"));
            this.AddPropertyItem(new DesignerActionPropertyItem("MaxValue", "MaxValue", "500", "Change the Maximum Value of the control"));
            this.AddPropertyItem(new DesignerActionPropertyItem("MinValue", "MinValue", "500", "Change the Minimum Value of the control"));
            this.AddPropertyItem(new DesignerActionPropertyItem("Width", "Width", "500", "Change the Width of the control"));

            return base.GetSortedActionItems();
        }
    }