get_threaded_comments Methode
get_threaded_comments(cell_name)
Ruft die Thread-Kommentare nach Zellname ab.
Kehrt zurück
def get_threaded_comments(self, cell_name):
...
Parameter | Typ | Beschreibung |
---|---|---|
cell_name | str | Der Name der Zelle. |
Beispiel
threadedComments2 = comments.get_threaded_comments("B2")
for i in range(len(threadedComments2)):
tc = threadedComments2[i]
note = tc.notes
get_threaded_comments(row, column)
Ruft die Thread-Kommentare nach Zeilen- und Spaltenindex ab.
Kehrt zurück
def get_threaded_comments(self, row, column):
...
Parameter | Typ | Beschreibung |
---|---|---|
row | int | Der Zeilenindex. |
column | int | Der Spaltenindex. |
Beispiel
threadedComments1 = comments.get_threaded_comments(1, 1)
for i in range(len(threadedComments1)):
tc = threadedComments1[i]
note = tc.notes
Siehe auch
- Modul aspose.cells
- Klasse CommentCollection