Articles in this section
Category / Section

How to insert another document before a text in Word document?

2 mins read

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 insert another document before the placeholder text in the Word document using C#.

Steps to insert another document before the placeholder text in the Word document:

  1. Create a new C# .NET Core console application project. Create .NET Core console application in Visual Studio in ASP.NET Core Word
  2. Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your .NET Core applications from NuGet.org. Add DocIO.Net.Core NuGet packages of ASP.NET Core Word
  3. Include the following namespace in the Program.cs file:

C#

using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
  1. Use the following code example to insert another document before the placeholder text in the Word document:

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))
            {
                //Find the placeholder text in destination document.
                TextSelection textSelections = destinationDocument.Find("Product Overview", false, true);
                WTextRange textRange = textSelections.GetAsOneRange();
                //Get the paragraph index of the placeholder text. 
                WParagraph paragraph = textRange.OwnerParagraph;
                int index = paragraph.OwnerTextBody.ChildEntities.IndexOf(paragraph);
                //Iterate source document.
                foreach (WSection sourceSection in sourceDocument.Sections)
                {
                    foreach (Entity entity in sourceSection.Body.ChildEntities)
                    {
                        //Insert source document before the placeholder text.
                        textRange.OwnerParagraph.OwnerTextBody.ChildEntities.Insert(index, entity.Clone());
                        index++;
                    }
                }
                //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 insert another document before the placeholder text in the Word document in C# can be downloaded from GitHub.

By executing the program, you will get the Output document as follows.

Output document in .NET Core Word library

Take a moment to peruse the documentation, where you can find basic Word document processing options along with the features like mail mergemerge 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 insert another document before a text in Word document.

You can refer to our ASP.NET Core Word’s feature tour page to know about its other groundbreaking feature representations. You can also explore our ASP.NET Core Word example 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 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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied