Item
Contenido
[
Ocultar
]CommentCollection indexer (1 of 3)
Obtiene elComment
elemento en el índice especificado.
public Comment 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#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";
Ver también
- class Comment
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
CommentCollection indexer (2 of 3)
Obtiene elComment
elemento en la celda especificada.
public Comment this[string cellName] { get; }
Parámetro | Descripción |
---|---|
cellName | Nombre de la celda. |
Valor_devuelto
El elemento en la celda especificada.
Ejemplos
[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";
Ver también
- class Comment
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
CommentCollection indexer (3 of 3)
Obtiene elComment
elemento en el índice de fila y el índice de columna especificados.
public Comment this[int row, int column] { get; }
Parámetro | Descripción |
---|---|
row | Índice de fila. |
column | Índice de columnas. |
Valor_devuelto
El elemento en la celda especificada.
Ejemplos
[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";
Ver también
- class Comment
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells