Add

Add(int, int)

Agrega un comentario a la colección.

public int Add(int row, int column)
ParámetroEscribeDescripción
rowInt32Índice de fila de celdas.
columnInt32Í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


Add(string)

Agrega un comentario a la colección.

public int Add(string cellName)
ParámetroEscribeDescripción
cellNameStringNombre 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