get_threaded_comments méthode

get_threaded_comments(cell_name)

Obtient les commentaires thématiques par nom de cellule.

Retour

def get_threaded_comments(self, cell_name):
    ...
ParamètreTaperDescription
cell_namestrLe nom de la cellule.

Exemple


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

get_threaded_comments(row, column)

Obtient les commentaires thématiques par index de ligne et de colonne.

Retour

def get_threaded_comments(self, row, column):
    ...
ParamètreTaperDescription
rowintL’index de ligne.
columnintL’indice de colonne.

Exemple


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

Voir également