add_threaded_comment方法
add_threaded_comment(cell_name, text, author)
添加线程评论。
返回
ThreadedComment 对象索引。
def add_threaded_comment(self, cell_name, text, author):
...
范围 | 类型 | 描述 |
---|---|---|
cell_name | str | 单元格的名称。 |
text | str | 评论正文 |
author | ThreadedCommentAuthor | 此线程评论的用户。 |
add_threaded_comment(row, column, text, author)
添加线程评论。
返回
ThreadedComment 对象索引。
def add_threaded_comment(self, row, column, text, author):
...
范围 | 类型 | 描述 |
---|---|---|
row | int | Cell 行索引。 |
column | int | Cell 列索引。 |
text | str | 评论正文 |
author | ThreadedCommentAuthor | 此线程评论的用户。 |