GetThreadedComments

GetThreadedComments(int, int)

Obtiene los comentarios encadenados por índice de fila y columna.

public ThreadedCommentCollection GetThreadedComments(int row, int column)
ParámetroEscribeDescripción
rowInt32El índice de fila.
columnInt32El índice de la columna.

Ejemplos


[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
    ThreadedComment tc = threadedComments1[i];
    string note = tc.Notes;
}

Ver también


GetThreadedComments(string)

Obtiene los comentarios encadenados por nombre de celda.

public ThreadedCommentCollection GetThreadedComments(string cellName)
ParámetroEscribeDescripción
cellNameStringEl nombre de la celda.

Ejemplos


[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
    ThreadedComment tc = threadedComments2[i];
    string note = tc.Notes;
}

Ver también