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