Add
Contenido
[
Ocultar
]Add(int, int)
Agrega un comentario a la colección.
public int Add(int row, int column)
Parámetro | Escribe | Descripción |
---|---|---|
row | Int32 | Índice de fila de celdas. |
column | Int32 | Índice de columna de celda. |
Valor_devuelto
Comment
índice de objetos
Ejemplos
[C#]
int commentIndex1 = comments.Add(0, 0);
Comment comment1 = comments[commentIndex1];
comment1.Note = "First note.";
comment1.Font.Name = "Times New Roman";
Ver también
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
Add(string)
Agrega un comentario a la colección.
public int Add(string cellName)
Parámetro | Escribe | Descripción |
---|---|---|
cellName | String | Nombre de la celda. |
Valor_devuelto
Comment
índice de objetos
Ejemplos
[C#]
int commentIndex2 = comments.Add("B2");
Comment comment2 = comments[commentIndex2];
comment2.Note = "Second note.";
comment2.Font.Name = "Times New Roman";
Ver también
- class CommentCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells