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ètre | Taper | Description |
---|---|---|
cell_name | str | Le 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ètre | Taper | Description |
---|---|---|
row | int | L’index de ligne. |
column | int | L’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
- module aspose.cells
- classe CommentCollection