C# Class Adf.Web.UI.RadioButtonListItem

Represents a list control that encapsulates a group of radio button controls. Used as a control in the panel.
Inheritance: BasePanelItem
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
Create ( string label, string name, bool enabled ) : RadioButtonListItem

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.

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

Create a horizontal or vertical System.Web.UI.WebControls.RadioButtonList and add it into Adf.Web.UI.BasePanelItem.

RadioButtonListItem ( System.Web.UI.WebControls.Label label, RadioButtonList list ) : System.Web.UI.WebControls

Initializes a new instance of the Adf.Web.UI.RadioButtonListItem class with the specified label and radio button list.

Method Details

Create() public static method

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.
return RadioButtonListItem

Create() public static method

Create a horizontal or vertical System.Web.UI.WebControls.RadioButtonList and add it into Adf.Web.UI.BasePanelItem.
public static Create ( string label, string name, bool enabled, RepeatDirection direction ) : 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.
direction RepeatDirection Specifies the direction in which items of a list control are displayed.
return RadioButtonListItem

RadioButtonListItem() public method

Initializes a new instance of the Adf.Web.UI.RadioButtonListItem class with the specified label and radio button list.
public RadioButtonListItem ( System.Web.UI.WebControls.Label label, RadioButtonList list ) : System.Web.UI.WebControls
label System.Web.UI.WebControls.Label The that defines display text of the radio button list within .
list System.Web.UI.WebControls.RadioButtonList The that defines the control which will be added into .
return System.Web.UI.WebControls