Adf.Web.UI.RadioButtonListItem.Create C# (CSharp) Метод

Create() публичный статический Метод

Create a horizontal System.Web.UI.WebControls.RadioButtonList and add it into Adf.Web.UI.BasePanelItem. Items of a list are displayed horizontally in rows from left to right, then top to bottom, until all items are rendered.
public static Create ( string label, string name, bool enabled ) : RadioButtonListItem
label string The display text of the radio button list within .
name string Set the identification of .
enabled bool A value indicating whether the control is enabled or not.
Результат RadioButtonListItem
        public static RadioButtonListItem Create(string label, string name, bool enabled)
        {
            return Create(label, name, enabled, RepeatDirection.Horizontal);
        }

Same methods

RadioButtonListItem::Create ( string label, string name, bool enabled, RepeatDirection direction ) : RadioButtonListItem