GetThreadedComments

GetThreadedComments(int, int)

Ruft die Thread-Kommentare nach Zeilen- und Spaltenindex ab.

public ThreadedCommentCollection GetThreadedComments(int row, int column)
ParameterTypBeschreibung
rowInt32Der Zeilenindex.
columnInt32Der Spaltenindex.

Beispiele


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

Siehe auch


GetThreadedComments(string)

Ruft die Thread-Kommentare nach Zellenname ab.

public ThreadedCommentCollection GetThreadedComments(string cellName)
ParameterTypBeschreibung
cellNameStringDer Name der Zelle.

Beispiele


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

Siehe auch