C# Class 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.
Inheritance: IPanelItem
Afficher le fichier Open project: NLADP/ADF Class Usage Examples

Protected Properties

Свойство Type Description
_id string
_itemControls List
_labelControls List
_visible bool

Méthodes publiques

Méthode Description
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

Method Details

AddControl() public méthode

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.
Résultat void

AddLabelControl() public méthode

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.
Résultat void

InsertControl() public méthode

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.
Résultat void

Property Details

_id protected_oe property

Represent the identifier of the pannel.
protected string _id
Résultat string

_itemControls protected_oe property

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
Résultat List

_labelControls protected_oe property

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
Résultat List

_visible protected_oe property

Represent the visibility of controls within the panel
protected bool _visible
Résultat bool