C# 클래스 Adf.Web.UI.RadioButtonListItem

Represents a list control that encapsulates a group of radio button controls. Used as a control in the panel.
상속: BasePanelItem
파일 보기 프로젝트 열기: NLADP/ADF

공개 메소드들

메소드 설명
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.

메소드 상세

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

Create() 공개 정적인 메소드

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.
리턴 RadioButtonListItem

RadioButtonListItem() 공개 메소드

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 .
리턴 System.Web.UI.WebControls