طريقة get_threaded_comments

get_threaded_comments(cell_name)

يحصل على التعليقات المترابطة حسب اسم الخلية.

عائدات

def get_threaded_comments(self, cell_name):
    ...
معامليكتبوصف
cell_namestrاسم الخلية.

مثال


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):
    ...
معامليكتبوصف
rowintفهرس الصف.
columnintفهرس العمود.

مثال


threadedComments1 = comments.get_threaded_comments(1, 1)
for i in range(len(threadedComments1)):
    tc = threadedComments1[i]
    note = tc.notes

أنظر أيضا