Item

TextBoxCollection indexer (1 of 2)

Ruft die abTextBox Element am angegebenen Index.

public TextBox this[int index] { get; }
ParameterBeschreibung
indexDer nullbasierte Index des Elements.

Rückgabewert

Das Element am angegebenen Index.

Beispiele


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

Siehe auch


TextBoxCollection indexer (2 of 2)

Ruft die abTextBox Element mit dem Namen.

public TextBox this[string name] { get; }
ParameterBeschreibung
nameDer Name des Textfelds.

Beispiele


[C#]
string txtboxName = "textbox 1"; 
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
    //Tun Sie, was Sie wollen
}

Siehe auch