remove_at method

remove_at

Removes the comment of the specific cell.

def remove_at(self, cell_name):
    ...
ParameterTypeDescription
cell_namestrThe 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):
    ...
ParameterTypeDescription
rowintThe row index.
columnintthe column index.

Example


comments.remove_at(1, 1)

See Also