GetThreadedComments

GetThreadedComments(int, int)

Ottiene i commenti in thread per riga e indice di colonna.

public ThreadedCommentCollection GetThreadedComments(int row, int column)
ParametroTipoDescrizione
rowInt32L’indice di riga.
columnInt32L’indice di colonna.

Esempi


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

Guarda anche


GetThreadedComments(string)

Ottiene i commenti in thread in base al nome della cella.

public ThreadedCommentCollection GetThreadedComments(string cellName)
ParametroTipoDescrizione
cellNameStringIl nome della cella.

Esempi


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

Guarda anche