remove_at metod

remove_at(cell_name)

Tar bort kommentaren från den specifika cellen.

def remove_at(self, cell_name):
    ...
ParameterTypBeskrivning
cell_namestrNamnet på cellen som innehåller en kommentar.

Exempel


comments.remove_at("B2")

remove_at(row, column)

Tar bort kommentaren från den specifika cellen.

def remove_at(self, row, column):
    ...
ParameterTypBeskrivning
rowintRadindex.
columnintkolumnindex.

Exempel


comments.remove_at(1, 1)

Se även