Item

TextBoxCollection indexer (1 of 2)

يحصل على ملفTextBox عنصر في الفهرس المحدد.

public TextBox this[int index] { get; }
معاملوصف
indexالفهرس الصفري للعنصر.

قيمة الإرجاع

العنصر في الفهرس المحدد.

أمثلة


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

أنظر أيضا


TextBoxCollection indexer (2 of 2)

يحصل على ملفTextBox عنصر بالاسم.

public TextBox this[string name] { get; }
معاملوصف
nameاسم مربع النص.

أمثلة


[C#]
string txtboxName = "textbox 1"; 
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
    //افعل ما تريد
}

أنظر أيضا