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):
    ...
| Parametro | Tipo | Descrizione | 
|---|---|---|
| cell_name | str | Il 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):
    ...
| Parametro | Tipo | Descrizione | 
|---|---|---|
| row | int | Indice di riga. | 
| column | int | L’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
- modulo aspose.cells
- classe CommentCollection