Partager via


FormCollection.Item[] Propriété

Définition

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

index
Int32

Emplacement de Form dans la collection.

Valeur de propriété

Form

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

name
String

Nom de l'objet Form.

Valeur de propriété

Form

Formulaire portant le nom spécifié.

S’applique à