método get_threaded_comments
get_threaded_comments(self, cell_name)
Obtiene los comentarios enhebrados por nombre de celda.
Devoluciones
def get_threaded_comments(self, cell_name):
...
| Parámetro | Tipo | Descripción |
|---|---|---|
| cell_name | str | El nombre de la celda. |
Ejemplo
threadedComments2 = comments.get_threaded_comments("B2")
for i in range(len(threadedComments2)):
tc = threadedComments2[i]
note = tc.notes
get_threaded_comments(self, row, column)
Obtiene los comentarios enhebrados por índice de fila y columna.
Devoluciones
def get_threaded_comments(self, row, column):
...
| Parámetro | Tipo | Descripción |
|---|---|---|
| row | int | El índice de fila. |
| column | int | El índice de la columna. |
Ejemplo
threadedComments1 = comments.get_threaded_comments(1, 1)
for i in range(len(threadedComments1)):
tc = threadedComments1[i]
note = tc.notes
Ver también
- módulo
aspose.cells - clase
CommentCollection