HierarchicalDataBoundControlAdapter.Control Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Récupère une référence fortement typée vers le contrôle HierarchicalDataBoundControl associé à cet objet HierarchicalDataBoundControlAdapter.
protected:
property System::Web::UI::WebControls::HierarchicalDataBoundControl ^ Control { System::Web::UI::WebControls::HierarchicalDataBoundControl ^ get(); };
protected System.Web.UI.WebControls.HierarchicalDataBoundControl Control { get; }
member this.Control : System.Web.UI.WebControls.HierarchicalDataBoundControl
Protected ReadOnly Property Control As HierarchicalDataBoundControl
Valeur de propriété
HierarchicalDataBoundControl associé à l'instance en cours de HierarchicalDataBoundControlAdapter.
Exemples
L’exemple de code suivant montre comment remplacer la Control propriété pour récupérer un contrôle fortement typé TreeView . Cet exemple de code fait partie d’un exemple plus grand fourni pour la HierarchicalDataBoundControlAdapter classe.
protected new System.Web.UI.WebControls.TreeView Control
{
get
{
return (System.Web.UI.WebControls.TreeView)base.Control;
}
}
Protected Overloads ReadOnly Property Control() As _
System.Web.UI.WebControls.TreeView
Get
Return CType( _
MyBase.Control, _
System.Web.UI.WebControls.TreeView)
End Get
End Property
Remarques
La Control propriété fournit l’accès au contrôle correspondant, y compris ses propriétés et méthodes.