Merge Documents
Use the Wordize Merge for .NET module to merge documents into one.
Select any document conversion module to work with the required formats.
Wordize provides the Wordize Merge for .NET module to combine multiple documents into one, saving time and reducing manual work. Programmatically merging documents ensures consistent formatting, supports various output formats (e.g. DOCX, PDF), and enhances document management. It is especially useful for creating reports, consolidating legal documents, and handling large-scale data efficiently.
How to Merge Documents
Merging documents appends the second document to the end of the first. Use one of the following Merge methods to programmatically merge two documents:
method Merge(string, string[])
string inputDoc1 = "Document1.docx";
string inputDoc2 = "Document2.docx";
Merger.Merge("MergeDocument.1.docx", new[] { inputDoc1, inputDoc2 });
method Merge(Stream, Stream[], SaveFormat)
using var firstStreamIn = File.OpenRead("Document1.docx");
using var secondStreamIn = File.OpenRead("Document1.docx");
using var streamOut = new File.Create("MergeStreamDocument.1.docx");
Merger.Merge(streamOut, new[] { firstStreamIn, secondStreamIn }, SaveFormat.Docx);
How to Specify Output Document Formatting
You can also specify how formatting is merged when combining multiple documents using the MergeFormatMode enumeration:
- MergeFormatting — to combine document formatting.
- KeepSourceFormatting — to retain source documents’ formatting
- KeepSourceLayout — to preserve source documents’ layout
The following code example shows how to merge two documents into one, preserving the source documents’ layout and using the Merge method:
method Merge(string, string[], SaveFormat, MergeFormatMode)
string inputDoc1 = "Document1.docx";
string inputDoc2 = "Document2.docx";
Merger.Merge("MergeDocument.2.pdf", new[] { inputDoc1, inputDoc2 }, SaveFormat.Pdf, MergeFormatMode.KeepSourceLayout);