Item
محتويات
[
يخفي
]TextBoxCollection indexer (1 of 2)
يحصل على ملفTextBox
عنصر في الفهرس المحدد.
public TextBox this[int index] { get; }
معامل | وصف |
---|---|
index | الفهرس الصفري للعنصر. |
قيمة الإرجاع
العنصر في الفهرس المحدد.
أمثلة
[C#]
int index = textBoxCollection.Count - 1;
TextBox txb = textBoxCollection[index];
أنظر أيضا
- class TextBox
- class TextBoxCollection
- مساحة الاسم Aspose.Cells.Drawing
- المجسم Aspose.Cells
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)
{
//افعل ما تريد
}
أنظر أيضا
- class TextBox
- class TextBoxCollection
- مساحة الاسم Aspose.Cells.Drawing
- المجسم Aspose.Cells