XlsSaveOptions constructor

__init__(self)

Creates options for saving Excel 97-2003 xls file.


def __init__(self):
    ...

__init__(self, save_format)

Creates options for saving Excel 97-2003 xls/xlt file.


def __init__(self, save_format):
    ...
ParameterTypeDescription
save_formataspose.cells.SaveFormatThe file format.
It should be SaveFormat.EXCEL_97_TO_2003 or SaveFormat.XLT,
otherwise the saved format will be set as SaveFormat.EXCEL_97_TO_2003 automatically.

See Also