XlsSaveOptions constructor

init

Creates options for saving Excel 97-2003 xls file.

def __init__(self):
    ...

init

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

def __init__(self, save_format):
    ...
ParameterTypeDescription
save_formatSaveFormatThe 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