convert method

convert(, source, save_as)

Converts Excel files to other formats.


@staticmethod
def convert(source, save_as):
    ...
ParameterTypeDescription
sourceSystem.StringThe source file name.
save_asSystem.StringThe file name of expected file.

convert(, source, load_options, save_as, save_options)

Converts Excel files to other formats.


@staticmethod
def convert(source, load_options, save_as, save_options):
    ...
ParameterTypeDescription
sourceSystem.StringThe source file name.
load_optionsaspose.cells.LoadOptionsThe options of loading the source file.
save_asSystem.StringThe file name of expected file.
save_optionsaspose.cells.SaveOptionsThe options of saving the file.

See Also