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

Serves as the base class that defines the methods and properties common to all controls in the Adf.Web.UI namespace.
상속: IPanelItem
파일 보기 프로젝트 열기: NLADP/ADF 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_id string
_itemControls List
_labelControls List
_visible bool

공개 메소드들

메소드 설명
AddControl ( WebControl control ) : void

Add the System.Web.UI.WebControls.WebControl to item control list. Used to hold the object of child controls within panel.

AddLabelControl ( WebControl control ) : void

Add the System.Web.UI.WebControls.WebControl to label control list. Used to hold the label of child controls within panel.

InsertControl ( int index, Control control ) : void

Insert the System.Web.UI.Control to item control list at the specified index

메소드 상세

AddControl() 공개 메소드

Add the System.Web.UI.WebControls.WebControl to item control list. Used to hold the object of child controls within panel.
public AddControl ( WebControl control ) : void
control System.Web.UI.WebControls.WebControl The that defines the controls which will be added.
리턴 void

AddLabelControl() 공개 메소드

Add the System.Web.UI.WebControls.WebControl to label control list. Used to hold the label of child controls within panel.
public AddLabelControl ( WebControl control ) : void
control System.Web.UI.WebControls.WebControl The that defines the controls which will be added.
리턴 void

InsertControl() 공개 메소드

Insert the System.Web.UI.Control to item control list at the specified index
public InsertControl ( int index, Control control ) : void
index int index at which item should be added
control System.Web.UI.Control The that defines the control which will be added.
리턴 void

프로퍼티 상세

_id 보호되어 있는 프로퍼티

Represent the identifier of the pannel.
protected string _id
리턴 string

_itemControls 보호되어 있는 프로퍼티

Represent strongly typed list of System.Web.UI.WebControls.WebControl that can be used to hold the object of child controls within panel.
protected List _itemControls
리턴 List

_labelControls 보호되어 있는 프로퍼티

Represent strongly typed list of System.Web.UI.WebControls.WebControl that can be used to hold the display name of child controls within panel.
protected List _labelControls
리턴 List

_visible 보호되어 있는 프로퍼티

Represent the visibility of controls within the panel
protected bool _visible
리턴 bool