add_threaded_comment method

add_threaded_comment(self, cell_name, text, author)

Adds a threaded comment.

Returns

ThreadedComment object index.


def add_threaded_comment(self, cell_name, text, author):
    ...
ParameterTypeDescription
cell_nameSystem.StringThe name of the cell.
textSystem.StringThe text of the comment
authoraspose.cells.ThreadedCommentAuthorThe user of this threaded comment.

add_threaded_comment(self, row, column, text, author)

Adds a threaded comment.

Returns

ThreadedComment object index.


def add_threaded_comment(self, row, column, text, author):
    ...
ParameterTypeDescription
rowintCell row index.
columnintCell column index.
textSystem.StringThe text of the comment
authoraspose.cells.ThreadedCommentAuthorThe user of this threaded comment.

See Also