delete_columns method

delete_columns(self, column_index, total_columns, update_reference)

Deletes several columns.


def delete_columns(self, column_index, total_columns, update_reference):
    ...
ParameterTypeDescription
column_indexintIndex of the first column to be deleted.
total_columnsintCount of columns to be deleted.
update_referenceboolIndicates whether update references in other worksheets.

delete_columns(self, column_index, total_columns, options)

Deletes several columns.


def delete_columns(self, column_index, total_columns, options):
    ...
ParameterTypeDescription
column_indexintIndex of the first column to be deleted.
total_columnsintCount of columns to be deleted.
optionsaspose.cells.DeleteOptionsOptions for the deleting operation

See Also