auto_fit_rows method
Contents
[
Hide
]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):
...
Parameter | Type | Description |
---|---|---|
only_auto | bool | True,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):
...
Parameter | Type | Description |
---|---|---|
options | aspose.cells.AutoFitterOptions | The 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):
...
Parameter | Type | Description |
---|---|---|
start_row | int | Start row index. |
end_row | int | End 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):
...
Parameter | Type | Description |
---|---|---|
start_row | int | Start row index. |
end_row | int | End row index. |
options | aspose.cells.AutoFitterOptions | The options of auto fitter. |
See Also
- module
aspose.cells
- class
Worksheet