TxtSaveOptions constructor

__init__(self)

Creates text file save options.


def __init__(self):
    ...

__init__(self, save_format)

Creates text file save options.


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

See Also