How do I create the .docx document with Microsoft.Office.Interop.Word?

26,459

After installing OpenXML SDK you will able to reference DocumentFormat.OpenXml assembly: Add Reference -> Assemblies -> Extensions -> DocumentFormat.OpenXml. Also you will need to reference WindowsBase.

Than you will be able to generate document, for example, like this:

using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;

namespace MyNamespace
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var document = WordprocessingDocument.Create(
                "test.docx", WordprocessingDocumentType.Document))
            {
                document.AddMainDocumentPart();
                document.MainDocumentPart.Document = new Document(
                    new Body(new Paragraph(new Run(new Text("some text")))));
            }
        }
    }
}

Also you can use Productivity Tool (the same link) to generate code from document. It can help to understand how work with SDK API.

You can do the same with Interop:

using System.Reflection;
using Microsoft.Office.Interop.Word;
using System.Runtime.InteropServices;

namespace Interop1
{
    class Program
    {
        static void Main(string[] args)
        {
            Application application = null;
            try
            {
                application = new Application();
                var document = application.Documents.Add();
                var paragraph = document.Paragraphs.Add();
                paragraph.Range.Text = "some text";

                string filename = GetFullName();
                application.ActiveDocument.SaveAs(filename, WdSaveFormat.wdFormatDocument);
                document.Close();

            }
            finally
            {
                if (application != null)
                {
                    application.Quit();
                    Marshal.FinalReleaseComObject(application);
                }
            }
        }
    }
}

But in this case you should reference COM type library Microsoft. Word Object Library.


Here are very useful things about COM interop: How do I properly clean up Excel interop objects?

Share:
26,459
novicegis
Author by

novicegis

Updated on July 15, 2022

Comments

  • novicegis
    novicegis almost 2 years

    How do I create the .docx document with Microsoft.Office.Interop.Word from List? or the best way is to add docx.dll?

    http://www.c-sharpcorner.com/UploadFile/scottlysle/using-the-docx-dll-to-programmatically-create-word-documents/

    Update. May be my first question is a litle incorrect. What is the difference between Microsoft.Office.Interop.Word and DocX.dll? Do I need Microsft Word for creating and opening .docx document in both cases?

  • Ale Miralles
    Ale Miralles over 10 years
    If you wanna go the interop way, you should also Quit the application object and release the com object. Otherwise you will end up with huge memory leaks. This is why alemiralles.blogspot.com.ar/2012/11/…
  • KFP
    KFP over 7 years
    That link is bad.
  • HeadlyvonNoggin
    HeadlyvonNoggin over 4 years
    FYI ... I have used DocX (Xceed.Words) for months. But recently after updating to the latest version it stopped working because it now requires a key, and the cost to purchase DocX is over $500. So I'll be switching over to Microsoft.Interop