método get_threaded_comments

get_threaded_comments(self, cell_name)

Obtiene los comentarios enhebrados por nombre de celda.

Devoluciones


def get_threaded_comments(self, cell_name):
    ...
ParámetroTipoDescripción
cell_namestrEl nombre de la celda.

Ejemplo


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

get_threaded_comments(self, row, column)

Obtiene los comentarios enhebrados por índice de fila y columna.

Devoluciones


def get_threaded_comments(self, row, column):
    ...
ParámetroTipoDescripción
rowintEl índice de fila.
columnintEl índice de la columna.

Ejemplo


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

Ver también