Merger class
Merger class
Represents a group of methods intended to merge a variety of different types of documents into a single output document.
Remarks
The specified input and output files or streams, along with the desired merge and save options, are used to merge the given input documents into a single output document.
The merging functionality supports over 35 different file formats.
Methods
Name | Description |
---|---|
merge(output_file, input_files) | Merges the given input documents into a single output document using specified input and output file names. |
merge(output_file, input_files, save_format, merge_format_mode) | Merges the given input documents into a single output document using specified input output file names and the final document format. |
merge(output_file, input_files, save_options, merge_format_mode) | Merges the given input documents into a single output document using specified input output file names and save options. |
merge(input_files, merge_format_mode) | Merges the given input documents into a single document and returns Document instance of the final document. |
merge_docs(input_documents, merge_format_mode) | Merges the given input documents into a single document and returns Document instance of the final document. |
merge_stream(output_stream, input_streams, save_format) | Merges the given input documents into a single output document using specified input output streams and the final document format. |
merge_stream(output_stream, input_streams, save_options, merge_format_mode) | Merges the given input documents into a single output document using specified input output streams and save options. |
merge_stream(input_streams, merge_format_mode) | Merges the given input documents into a single document and returns Document instance of the final document. |
See Also
- module aspose.words.lowcode