Item
Contenido
[
Ocultar
]TextBoxCollection indexer (1 of 2)
Obtiene elTextBox
elemento en el índice especificado.
public TextBox this[int index] { get; }
Parámetro | Descripción |
---|---|
index | El índice de base cero del elemento. |
Valor_devuelto
El elemento en el índice especificado.
Ejemplos
[C#]
int index = textBoxCollection.Count - 1;
TextBox txb = textBoxCollection[index];
Ver también
- class TextBox
- class TextBoxCollection
- espacio de nombres Aspose.Cells.Drawing
- asamblea Aspose.Cells
TextBoxCollection indexer (2 of 2)
Obtiene elTextBox
elemento por el nombre.
public TextBox this[string name] { get; }
Parámetro | Descripción |
---|---|
name | El nombre del cuadro de texto. |
Ejemplos
[C#]
string txtboxName = "textbox 1";
TextBox txb2 = textBoxCollection[txtboxName];
if(txb2 != null)
{
//Haz lo que quieras
}
Ver también
- class TextBox
- class TextBoxCollection
- espacio de nombres Aspose.Cells.Drawing
- asamblea Aspose.Cells