Item
İçindekiler
[
Saklamak
]TextBoxCollection indexer (1 of 2)
TextBox
belirtilen dizindeki öğe.
public TextBox this[int index] { get; }
Parametre | Tanı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
- class TextBox
- class TextBoxCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells
TextBoxCollection indexer (2 of 2)
TextBox
adlı öğe.
public TextBox this[string name] { get; }
Parametre | Tanım |
---|---|
name | Metin kutusunun adı. |
Örnekler
[C#]
string txtboxName = "textbox 1";
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
//ne istiyorsan onu yap
}
Ayrıca bakınız
- class TextBox
- class TextBoxCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells