GetThreadedComments

GetThreadedComments(int, int)

Satır ve sütun dizinine göre ileti dizili yorumları alır.

public ThreadedCommentCollection GetThreadedComments(int row, int column)
ParametreTipTanım
rowInt32Satır indeksi.
columnInt32Sütun dizini.

Örnekler


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

Ayrıca bakınız


GetThreadedComments(string)

Hücre adına göre ileti dizili yorumları alır.

public ThreadedCommentCollection GetThreadedComments(string cellName)
ParametreTipTanım
cellNameStringHücrenin adı.

Örnekler


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

Ayrıca bakınız