GetThreadedComments
محتويات
[
يخفي
]GetThreadedComments(int, int)
الحصول على التعليقات المترابطة حسب فهرس الصف والعمود.
public ThreadedCommentCollection GetThreadedComments(int row, int column)
معامل | يكتب | وصف |
---|---|---|
row | Int32 | فهرس الصف. |
column | Int32 | فهرس العمود. |
أمثلة
[C#]
ThreadedCommentCollection threadedComments1 = comments.GetThreadedComments(1, 1);
for (int i = 0; i < threadedComments1.Count; ++i)
{
ThreadedComment tc = threadedComments1[i];
string note = tc.Notes;
}
أنظر أيضا
- class ThreadedCommentCollection
- class CommentCollection
- مساحة الاسم Aspose.Cells
- المجسم Aspose.Cells
GetThreadedComments(string)
الحصول على التعليقات المترابطة حسب اسم الخلية.
public ThreadedCommentCollection GetThreadedComments(string cellName)
معامل | يكتب | وصف |
---|---|---|
cellName | String | اسم الخلية. |
أمثلة
[C#]
ThreadedCommentCollection threadedComments2 = comments.GetThreadedComments("B2");
for (int i = 0; i < threadedComments2.Count; ++i)
{
ThreadedComment tc = threadedComments2[i];
string note = tc.Notes;
}
أنظر أيضا
- class ThreadedCommentCollection
- class CommentCollection
- مساحة الاسم Aspose.Cells
- المجسم Aspose.Cells