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):
    ...
ParameterTypBeschreibung
cell_namestrDer 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):
    ...
ParameterTypBeschreibung
rowintDer Zeilenindex.
columnintDer Spaltenindex.

Beispiel


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

Siehe auch