metodo get_threaded_comments

get_threaded_comments(cell_name)

Ottiene i commenti in thread 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(row, column)

Ottiene i commenti in thread per indice di riga e colonna.

ritorna

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

Esempio


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

Guarda anche