Item
Inhalt
[
Ausblenden
]TextBoxCollection indexer (1 of 2)
Ruft die abTextBox
Element am angegebenen Index.
public TextBox this[int index] { get; }
Parameter | Beschreibung |
---|---|
index | Der nullbasierte Index des Elements. |
Rückgabewert
Das Element am angegebenen Index.
Beispiele
[C#]
int index = textBoxCollection.Count - 1;
TextBox txb = textBoxCollection[index];
Siehe auch
- class TextBox
- class TextBoxCollection
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells
TextBoxCollection indexer (2 of 2)
Ruft die abTextBox
Element mit dem Namen.
public TextBox this[string name] { get; }
Parameter | Beschreibung |
---|---|
name | Der Name des Textfelds. |
Beispiele
[C#]
string txtboxName = "textbox 1";
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
//Tun Sie, was Sie wollen
}
Siehe auch
- class TextBox
- class TextBoxCollection
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells