1. Tag Results
merge-word-documents (5)
1 - 5 of 5
How to merge two Word documents without header and footer from the source document
Syncfusion® Essential® DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or Interop dependencies. Using this library, you can merge two Word documents without header and footer from the source document in C#. Steps to merge two Word documents without header and footer from the source document: Create a new C# .NET Core console application project. Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your .NET Core applications from NuGet.org. Include the following namespace in the Program.cs file. C# using Syncfusion.DocIO; using Syncfusion.DocIO.DLS; Use the following code example to merge two Word documents without header and footer from the source document. C# //Load the destination Word document as a stream. using (FileStream destinationStreamPath = new FileStream(Path.GetFullPath(@"../../../DestinationDocument.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) {     //Open the destination Word document.     using (WordDocument destinationDocument = new WordDocument(destinationStreamPath, FormatType.Automatic))     {         //Load the source Word document as a stream.         using (FileStream sourceDocumentPathStream = new FileStream(Path.GetFullPath(@"../../../SourceDocument.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))         {             //Open the source Word document.             using (WordDocument sourceDocument = new WordDocument(sourceDocumentPathStream, FormatType.Docx))             {                 //Iterate source Word document.                 foreach (WSection sourceDocumentSection in sourceDocument.Sections)                 {                     //Remove the first page header.                     sourceDocumentSection.HeadersFooters.FirstPageHeader.ChildEntities.Clear();                     //Remove the first page footer.                     sourceDocumentSection.HeadersFooters.FirstPageFooter.ChildEntities.Clear();                     //Remove the even header.                     sourceDocumentSection.HeadersFooters.EvenHeader.ChildEntities.Clear();                     //Remove the even footer.                     sourceDocumentSection.HeadersFooters.EvenFooter.ChildEntities.Clear();                     //Remove the odd header.                     sourceDocumentSection.HeadersFooters.OddHeader.ChildEntities.Clear();                     //Remove the odd footer.                     sourceDocumentSection.HeadersFooters.OddFooter.ChildEntities.Clear();                 }                 //Merge source Word document content to destination Word document.                 destinationDocument.ImportContent(sourceDocument);             }         }         //Create a file stream.         using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"../../../Sample.docx"), FileMode.Create, FileAccess.ReadWrite))         {             //Save the Word document to the file stream.             destinationDocument.Save(outputFileStream, FormatType.Docx);         }     } } A complete working sample merge Word document without header and footer from the source document in C# can be downloaded from GitHub. Input Destination and Source Word documents as follows. By executing the program, you will get the Output document as follows. Take a moment to peruse the documentation, where you can find basic Word document processing options along with the features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly, the PDF and Image conversions with code examples. Explore more about the rich set of Syncfusion® Word Framework features. See Also: Is it possible to update Include Text field in Word document using DocIO?
How to merge multiple documents with header and footer of destination document?
Syncfusion® Essential® DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or Interop dependencies. Using this library, you can merge multiple documents with header and footer of destination document using C#. Steps to merge multiple documents with header and footer of destination document Create a new C# .NET Core console application project. Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your .NET Core applications from NuGet.org. Include the following namespace in the Program.cs file. C# using Syncfusion.DocIO; using Syncfusion.DocIO.DLS; Use the following code example to merge multiple documents with header and footer of destination document using C#. C# //Open the destination document as a stream. using (FileStream destinationStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/DestinationDocument.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) {     //Open the destination document.     using (WordDocument destinationDocument = new WordDocument(destinationStreamPath, FormatType.Automatic))     {         //Get the Source document names from the folder.         string[] sourceDocumentNames = Directory.GetFiles(@"../../../Data/SourceDocuments/");         //Merge each source document to the destination document.         foreach (string subDocumentName in sourceDocumentNames)         {             //Open the source document files as a stream.             using (FileStream sourceDocumentPathStream = new FileStream(Path.GetFullPath(subDocumentName), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))             {                 //Open the source documents.                 using (WordDocument sourceDocuments = new WordDocument(sourceDocumentPathStream, FormatType.Docx))                 {                     //Iterate source document sections.                     foreach (WSection sourceDocumentSections in sourceDocuments.Sections)                     {                         //Clear the headers and footers of the source documents.                         sourceDocumentSections.HeadersFooters.FirstPageHeader.ChildEntities.Clear();                         sourceDocumentSections.HeadersFooters.FirstPageFooter.ChildEntities.Clear();                         sourceDocumentSections.HeadersFooters.EvenHeader.ChildEntities.Clear();                         sourceDocumentSections.HeadersFooters.EvenFooter.ChildEntities.Clear();                         sourceDocumentSections.HeadersFooters.OddHeader.ChildEntities.Clear();                         sourceDocumentSections.HeadersFooters.OddFooter.ChildEntities.Clear();                     }                     //Import source documents to destination document.                     destinationDocument.ImportContent(sourceDocuments);                                               }             }         }         //Create a file stream.         using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"../../../Sample.docx"), FileMode.Create, FileAccess.ReadWrite))         {             //Save the Word document to the file stream.             destinationDocument.Save(outputFileStream, FormatType.Docx);         }     } } A complete working sample to merge multiple documents with header and footer of destination document using C# can be downloaded from GitHub. Input destination Word document as follows. Input source Word documents as follows. By executing the program, you will get the output document as follows. Take a moment to peruse the documentation, where you can find basic Word document processing options along with the features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly, the PDF and Image conversions with code examples. Explore more about the rich set of Syncfusion® Word Framework features. See Also: How to merge multiple Word documents in C#, VB.NET How to merge one document to another with the margins of destination document? Conclusion I hope you enjoyed learning about how to merge multiple documents with header and footer of destination document. You can refer to our ASP.NET Core Word Library’s feature tour page to know about its other groundbreaking feature representations. You can also explore our ASP.NET Core Word Library documentation to understand how to present and manipulate data. For current customers, you can check out our ASP.NET Core components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our ASP.NET Core Word Library and other ASP.NET Core components. If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!    
How to merge one document to another with the margins of destination document?
 Syncfusion® Essential® DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or Interop dependencies. Using this library, you can merge one document to another with the margins  of the destination document using C#. Steps to merge one document to another with the margins of the destination document using C#: Create a new C# .NET Core console application project. Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your .NET Core applications from NuGet.org. Include the following namespace in the Program.cs file: C# using Syncfusion.DocIO; using Syncfusion.DocIO.DLS; Use the following code example to merge one document to another with the margins of the destination document using C#: C# //Open the file as a stream. using (FileStream sourceStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/SourceDocument.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) {     //Load the file stream into a Word document.     using (WordDocument sourceDocument = new WordDocument(sourceStreamPath, FormatType.Automatic))     {         using (FileStream destinationStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/DestinationDocument.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))         {             //Open the destination document.             using (WordDocument destinationDocument = new WordDocument(destinationStreamPath, FormatType.Automatic))             {                 //Get the page setup of the destination document.                 WPageSetup destinationDocumentPageSetup = destinationDocument.LastSection.PageSetup;                 //Iterate source document.                 foreach (WSection sourceSection in sourceDocument.Sections)                 {                     sourceSection.PageSetup.Margins = destinationDocumentPageSetup.Margins;                     //Clone and merge the source document sections to the destination document.                     destinationDocument.Sections.Add(sourceSection.Clone());                 }                 //Create a file stream.                 using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"../../../Sample.docx"), FileMode.Create, FileAccess.ReadWrite))                 {                     //Save the Word document to the file stream.                     destinationDocument.Save(outputFileStream, FormatType.Docx);                 }             }         }     } } A complete working sample to merge Word documents with same margins using C# can be downloaded from GitHub. By executing the program, you will get the Output document as follows. Take a moment to peruse the documentation, where you can find basic Word document processing options along with the features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly, the PDF and Image conversions with code examples. Explore more about the rich set of Syncfusion® Word Framework features. See Also: How to merge multiple Word documents in C#, VB.NET Note:Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.   Conclusion I hope you enjoyed learning about how to merge one document to another with the margins of destination document. You can refer to our .NET Core Word library feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our .NET Core Word library examples to understand how to present and manipulate data. For current customers, you can check out our .NET Core components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our .NET Core Word and other .NET Core components. If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!  
How to merge multiple Word documents in C#, VB.NET
Syncfusion® Essential® DocIO is a.NET Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can merge multiple Word documents in C# and VB.NET. Steps to merge multiple Word documents programmatically in C#: Create a new C# console application project. Install Syncfusion.DocIO.WinForms NuGet package as a reference to your .NET Framework applications from the NuGet.org. Include the following namespace in the Program.cs file. C# using Syncfusion.DocIO.DLS; using System.IO; VB Imports Syncfusion.DocIO.DLS Imports System.IO Use the following code snippet to merge multiple Word documents into single Word document. C# //Opens the main document. using (WordDocument mainDocument = new WordDocument(@"../../MainDocument.docx")) {     //Gets the Word document names from a folder.     string[] subDocumentNames = Directory.GetFiles(@"../../Data/");     //Merges each Word document to the main document.     foreach (string subDocumentName in subDocumentNames)     {         //Opens the sub document.         using (WordDocument subDocument = new WordDocument(subDocumentName))         {             //Imports the contents of sub document at the end of main document.             mainDocument.ImportContent(subDocument);         }     }     //Saves the main document.     mainDocument.Save("Result.docx"); } VB 'Opens the main document. Using mainDocument As WordDocument = New WordDocument("../../MainDocument.docx")     'Gets the Word document names from a folder.     Dim subDocumentNames = Directory.GetFiles("../../Data/")     'Merges each Word document to the main document.     For Each subDocumentName In subDocumentNames         'Opens the sub document.         Using subDocument As WordDocument = New WordDocument(subDocumentName)             'Imports the contents of sub document at the end of main document.             mainDocument.ImportContent(subDocument)         End Using     Next     'Saves the main document.     mainDocument.Save("Result.docx") End Using A complete working example to merge multiple Word documents using C# can be downloaded from Merge-multiple-Word-documents.zip. By executing the application, you will get the output Word document as follows. Take a moment to peruse the documentation, where you can find basic Word document processing options along with features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly PDF and Image conversions with code examples.Explore more about the rich set of Syncfusion® Word Framework features.An online example to merge Word documents Note:Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.  
How to merge Word documents in C#, VB.NET
Syncfusion® Essential® DocIO is a .NET Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can merge Word documents in C# and VB.NET. Steps to merge Word documents programmatically in C#: Create a new C# console application project. Install Syncfusion.DocIO.WinForms NuGet package as a reference to your .NET Framework applications from the NuGet.org. Include the following namespace in the Program.cs file. C# using Syncfusion.DocIO.DLS; VB Imports Syncfusion.DocIO.DLS Use the following code snippet to merge Word documents into single Word document. C# //Opens the destination document. using (WordDocument destinationDocument = new WordDocument(@"../../DestinationTemplate.docx")) {     //Opens the source document.     using (WordDocument sourceDocument = new WordDocument(@"../../SourceTemplate.docx"))     {         //Imports the contents of source document at the end of destination document.         destinationDocument.ImportContent(sourceDocument);         //Saves the destination document.         destinationDocument.Save("Result.docx");     } } VB 'Opens the destination document. Using destinationDocument As WordDocument = New WordDocument("../../DestinationTemplate.docx")     'Opens the source document.     Using sourceDocument As WordDocument = New WordDocument("../../SourceTemplate.docx")         'Imports the contents of source document at the end of destination document.         destinationDocument.ImportContent(sourceDocument)         'Saves the destination document.         destinationDocument.Save("Result.docx")     End Using End Using A complete working example to merge Word documents using C# can be downloaded from Merge-Word-documents.zip. By executing the application, you will get the output Word document as follows. Take a moment to peruse the documentation, where you can find basic Word document processing options along with features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly PDF and Image conversions with code examples. Explore more about the rich set of Syncfusion® Word Framework features. An online example to merge Word documents. Note:Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.  
No articles found
No articles found
1 of 1 pages (5 items)