process method

process

Merges multiple PowerPoint presentations of the same format into a single presentation file.

@staticmethod
def process(input_file_names, output_file_name):
    ...
ParameterTypeDescription
input_file_namesList[str]An array of the input presentation file names.
output_file_namestrThe output file name of the resulting merged presentation file.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Thrown when input file names are invalid or formats do not match.

process

Merges multiple PowerPoint presentations of the same format into a single presentation file.

@staticmethod
def process(input_file_names, output_stream):
    ...
ParameterTypeDescription
input_file_namesList[str]An array of the input presentation file names.
output_streamio.RawIOBaseThe output stream.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Thrown when input file names are invalid or formats do not match.

process

Merges multiple PowerPoint presentations of the same format into a single presentation file.

@staticmethod
def process(input_file_names, output_file_name, options):
    ...
ParameterTypeDescription
input_file_namesList[str]An array of the input presentation file names.
output_file_namestrThe output file name of the resulting merged presentation file.
optionsISaveOptionsThe additional options that define how the merged presentation is saved.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Thrown when input file names are invalid or formats do not match.

process

Merges multiple PowerPoint presentations of the same format into a single presentation file.

@staticmethod
def process(input_file_names, output_stream, options):
    ...
ParameterTypeDescription
input_file_namesList[str]An array of the input presentation file names.
output_streamio.RawIOBaseThe output stream.
optionsISaveOptionsThe additional options that define how the merged presentation is saved.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Thrown when input file names are invalid or formats do not match.

See Also