auto_fit_rows method

auto_fit_rows(self)

Autofits all rows in this worksheet.


def auto_fit_rows(self):
    ...

auto_fit_rows(self, only_auto)

Autofits all rows in this worksheet.


def auto_fit_rows(self, only_auto):
    ...
ParameterTypeDescription
only_autoboolTrue,only autofits the row height when row height is not customed.

auto_fit_rows(self, options)

Autofits all rows in this worksheet.


def auto_fit_rows(self, options):
    ...
ParameterTypeDescription
optionsaspose.cells.AutoFitterOptionsThe auto fitter options

auto_fit_rows(self, start_row, end_row)

Autofits row height in a range.


def auto_fit_rows(self, start_row, end_row):
    ...
ParameterTypeDescription
start_rowintStart row index.
end_rowintEnd row index.

auto_fit_rows(self, start_row, end_row, options)

Autofits row height in a range.


def auto_fit_rows(self, start_row, end_row, options):
    ...
ParameterTypeDescription
start_rowintStart row index.
end_rowintEnd row index.
optionsaspose.cells.AutoFitterOptionsThe options of auto fitter.

See Also