auto_fit_rows method

auto_fit_rows

Autofits all rows in this worksheet.

def auto_fit_rows(self):
    ...

auto_fit_rows

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

Autofits all rows in this worksheet.

def auto_fit_rows(self, options):
    ...
ParameterTypeDescription
optionsAutoFitterOptionsThe auto fitter options

auto_fit_rows

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

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.
optionsAutoFitterOptionsThe options of auto fitter.

See Also