Item
Innehåll
[
Dölj
]TextBoxCollection indexer (1 of 2)
FårTextBox
element vid angivet index.
public TextBox this[int index] { get; }
Parameter | Beskrivning |
---|---|
index | Elementets nollbaserade index. |
Returvärde
Elementet vid det angivna indexet.
Exempel
[C#]
int index = textBoxCollection.Count - 1;
TextBox txb = textBoxCollection[index];
Se även
- class TextBox
- class TextBoxCollection
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells
TextBoxCollection indexer (2 of 2)
FårTextBox
element vid namnet.
public TextBox this[string name] { get; }
Parameter | Beskrivning |
---|---|
name | Namnet på textrutan. |
Exempel
[C#]
string txtboxName = "textbox 1";
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
//gör vad du vill
}
Se även
- class TextBox
- class TextBoxCollection
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells