طريقة get_threaded_comments
get_threaded_comments(self, cell_name)
يحصل على التعليقات المترابطة حسب اسم الخلية.
عائدات
def get_threaded_comments(self, cell_name):
...
| معامل | يكتب | وصف |
|---|---|---|
| cell_name | str | اسم الخلية. |
مثال
threadedComments2 = comments.get_threaded_comments("B2")
for i in range(len(threadedComments2)):
tc = threadedComments2[i]
note = tc.notes
get_threaded_comments(self, row, column)
يحصل على التعليقات المترابطة حسب مؤشر الصف والعمود.
عائدات
def get_threaded_comments(self, row, column):
...
| معامل | يكتب | وصف |
|---|---|---|
| row | int | مؤشر الصف. |
| column | int | فهرس العمود. |
مثال
threadedComments1 = comments.get_threaded_comments(1, 1)
for i in range(len(threadedComments1)):
tc = threadedComments1[i]
note = tc.notes
أنظر أيضا
- الوحدة
aspose.cells - فئة
CommentCollection