Item

CommentCollection indexer (1 of 3)

Obtiene elComment elemento en el índice especificado.

public Comment this[int index] { get; }
ParámetroDescripción
indexEl í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


CommentCollection indexer (2 of 3)

Obtiene elComment elemento en la celda especificada.

public Comment this[string cellName] { get; }
ParámetroDescripción
cellNameNombre de la celda.

Valor_devuelto

El elemento en la celda especificada.

Ejemplos


[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";

Ver también


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ámetroDescripció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