Item

TextBoxCollection indexer (1 of 2)

TextBox belirtilen dizindeki öğe.

public TextBox this[int index] { get; }
ParametreTanım
indexÖğenin sıfır tabanlı dizini.

Geri dönüş değeri

Belirtilen dizindeki öğe.

Örnekler


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

Ayrıca bakınız


TextBoxCollection indexer (2 of 2)

TextBox adlı öğe.

public TextBox this[string name] { get; }
ParametreTanım
nameMetin kutusunun adı.

Örnekler


[C#]
string txtboxName = "textbox 1"; 
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
    //ne istiyorsan onu yap
}

Ayrıca bakınız