FormCollection.Item[] 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.
Fournit l'accès aux objets Form dans la collection.
Surcharges
Item[Int32] |
Obtient ou définit un élément dans la collection par son index numérique. |
Item[String] |
Obtient ou définit un élément dans la collection par le nom de l'objet Form associé. |
Item[Int32]
Obtient ou définit un élément dans la collection par son index numérique.
public:
virtual property System::Windows::Forms::Form ^ default[int] { System::Windows::Forms::Form ^ get(int index); };
public virtual System.Windows.Forms.Form this[int index] { get; }
public virtual System.Windows.Forms.Form? this[int index] { get; }
member this.Item(int) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(index As Integer) As Form
Paramètres
Valeur de propriété
Format de l'index spécifié.
S’applique à
Item[String]
Obtient ou définit un élément dans la collection par le nom de l'objet Form associé.
public:
virtual property System::Windows::Forms::Form ^ default[System::String ^] { System::Windows::Forms::Form ^ get(System::String ^ name); };
public virtual System.Windows.Forms.Form this[string name] { get; }
public virtual System.Windows.Forms.Form? this[string? name] { get; }
member this.Item(string) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(name As String) As Form
Paramètres
Valeur de propriété
Formulaire portant le nom spécifié.