Metodo get_threaded_comments

get_threaded_comments(self, cell_name)

Ottiene i commenti ordinati in base al nome della cella.

ritorna


def get_threaded_comments(self, cell_name):
    ...
ParametroTipoDescrizione
cell_namestrIl nome della cella.

Esempio


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

get_threaded_comments(self, row, column)

Ottiene i commenti suddivisi in base all’indice di riga e di colonna.

ritorna


def get_threaded_comments(self, row, column):
    ...
ParametroTipoDescrizione
rowintIndice di riga.
columnintL’indice della colonna.

Esempio


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

Guarda anche