remove_at method
remove_at
Removes the comment of the specific cell.
def remove_at(self, cell_name):
...
Parameter | Type | Description |
---|---|---|
cell_name | str | The name of cell which contains a comment. |
Example
comments.remove_at("B2")
remove_at
Removes the comment of the specific cell.
def remove_at(self, row, column):
...
Parameter | Type | Description |
---|---|---|
row | int | The row index. |
column | int | the column index. |
Example
comments.remove_at(1, 1)
See Also
- module
aspose.cells
- class
CommentCollection