Item

TextBoxCollection indexer (1 of 2)

Obtiene elTextBox elemento en el índice especificado.

public TextBox this[int index] { get; }
ParámetroDescripción
indexEl índice de base cero del elemento.

Valor_devuelto

El elemento en el índice especificado.

Ejemplos


[C#]
int index = textBoxCollection.Count - 1;
TextBox txb = textBoxCollection[index];

Ver también


TextBoxCollection indexer (2 of 2)

Obtiene elTextBox elemento por el nombre.

public TextBox this[string name] { get; }
ParámetroDescripción
nameEl nombre del cuadro de texto.

Ejemplos


[C#]
string txtboxName = "textbox 1"; 
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
    //Haz lo que quieras
}

Ver también