get_threaded_comments method

get_threaded_comments

Gets the threaded comments by cell name.

Returns

def get_threaded_comments(self, cell_name):
    ...
ParameterTypeDescription
cell_namestrThe name of the cell.

Example


threadedComments2 = comments.get_threaded_comments("B2")
for i in range(len(threadedComments2)):
    tc = threadedComments2[i]
    note = tc.notes

get_threaded_comments

Gets the threaded comments by row and column index.

Returns

def get_threaded_comments(self, row, column):
    ...
ParameterTypeDescription
rowintThe row index.
columnintThe column index.

Example


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

See Also