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):
...
| Parameter | Type | Description |
|---|
| input_file_names | List[str] | An array of the input presentation file names. |
| output_file_name | str | The output file name of the resulting merged presentation file. |
Exceptions
| Exception | Description |
|---|
| 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):
...
| Parameter | Type | Description |
|---|
| input_file_names | List[str] | An array of the input presentation file names. |
| output_stream | io.RawIOBase | The output stream. |
Exceptions
| Exception | Description |
|---|
| 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):
...
| Parameter | Type | Description |
|---|
| input_file_names | List[str] | An array of the input presentation file names. |
| output_file_name | str | The output file name of the resulting merged presentation file. |
| options | ISaveOptions | The additional options that define how the merged presentation is saved. |
Exceptions
| Exception | Description |
|---|
| 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):
...
| Parameter | Type | Description |
|---|
| input_file_names | List[str] | An array of the input presentation file names. |
| output_stream | io.RawIOBase | The output stream. |
| options | ISaveOptions | The additional options that define how the merged presentation is saved. |
Exceptions
| Exception | Description |
|---|
| RuntimeError(Proxy error(ArgumentException)) | Thrown when input file names are invalid or formats do not match. |
See Also