get_threaded_comments yöntemi
get_threaded_comments(self, cell_name)
Hücre adına göre iş parçacıklı yorumları alır.
İadeler
def get_threaded_comments(self, cell_name):
...
Parametre | Tip | Tanım |
---|---|---|
cell_name | str | Hücrenin adı. |
Örnek
threadedComments2 = comments.get_threaded_comments("B2")
for i in range(len(threadedComments2)):
tc = threadedComments2[i]
note = tc.notes
get_threaded_comments(self, row, column)
Satır ve sütun indeksine göre iş parçacıklı yorumları alır.
İadeler
def get_threaded_comments(self, row, column):
...
Parametre | Tip | Tanım |
---|---|---|
row | int | Satır dizini. |
column | int | Sütun dizini. |
Örnek
threadedComments1 = comments.get_threaded_comments(1, 1)
for i in range(len(threadedComments1)):
tc = threadedComments1[i]
note = tc.notes
Ayrıca bakınız
- modül
aspose.cells
- sınıf
CommentCollection