طريقة get_threaded_comments
get_threaded_comments(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(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