GridItemCollection.Item[] Propiedad

Definición

Obtiene un GridItem objeto de la colección .

Sobrecargas

Nombre Description
Item[Int32]

Obtiene en GridItem el índice especificado.

Item[String]

Obtiene con GridItem la etiqueta coincidente.

Item[Int32]

Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs

Obtiene en GridItem el índice especificado.

public:
 property System::Windows::Forms::GridItem ^ default[int] { System::Windows::Forms::GridItem ^ get(int index); };
public System.Windows.Forms.GridItem this[int index] { get; }
member this.Item(int) : System.Windows.Forms.GridItem
Default Public ReadOnly Property Item(index As Integer) As GridItem

Parámetros

index
Int32

Índice del elemento de cuadrícula que se va a devolver.

Valor de propiedad

en GridItem el índice especificado.

Se aplica a

Item[String]

Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs
Source:
GridItemCollection.cs

Obtiene con GridItem la etiqueta coincidente.

public:
 property System::Windows::Forms::GridItem ^ default[System::String ^] { System::Windows::Forms::GridItem ^ get(System::String ^ label); };
public System.Windows.Forms.GridItem this[string label] { get; }
public System.Windows.Forms.GridItem? this[string label] { get; }
member this.Item(string) : System.Windows.Forms.GridItem
Default Public ReadOnly Property Item(label As String) As GridItem

Parámetros

label
String

Valor de cadena que debe coincidir con una etiqueta de elemento de cuadrícula.

Valor de propiedad

Elemento de cuadrícula cuya etiqueta coincide con el label parámetro .

Se aplica a