GetThreadedComments
İçindekiler
[
Saklamak
]GetThreadedComments(int, int)
Satır ve sütun dizinine göre ileti dizili yorumları alır.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
Parametre | Tip | Tanım |
---|---|---|
row | Int32 | Satır indeksi. |
column | Int32 | Sü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
- class ThreadedCommentCollection
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
GetThreadedComments(string)
Hücre adına göre ileti dizili yorumları alır.
public ThreadedCommentCollection GetThreadedComments(string cellName)
Parametre | Tip | Tanım |
---|---|---|
cellName | String | Hü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
- class ThreadedCommentCollection
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells