How to: Programmatically Create New Documents
When you create a document programmatically, the new document is a native Microsoft.Office.Interop.Word.Document object. This object does not have the additional events and data binding capabilities of a Microsoft.Office.Tools.Word.Document host item. For more information, see Programmatic Limitations of Host Items and Host Controls.
Applies to: The information in this topic applies to document-level projects and VSTO add-in projects for Word. For more information, see Features Available by Office Application and Project Type.
When you develop a document-level project, you cannot programmatically add Microsoft.Office.Tools.Word.Document host items to your project. In a VSTO Add-in project, you can convert any Microsoft.Office.Interop.Word.Document object to a Microsoft.Office.Tools.Word.Document host item at run time. For more information, see Extending Word Documents and Excel Workbooks in VSTO Add-ins at Run Time.
To create a new document based on the Normal template
Use the M:Microsoft.Office.Interop.Word.Documents.Add(System.Object@,System.Object@,System.Object@,System.Object@) method of the T:Microsoft.Office.Interop.Word.Documents collection to create a new document based on the Normal template. To use this code example, run it from the
ThisDocumentorThisAddInclass in your project.
The M:Microsoft.Office.Interop.Word.Documents.Add(System.Object@,System.Object@,System.Object@,System.Object@) method has an optional Template argument to create a new document based on a template other than the Normal template. You must supply the file name and fully qualified path of the template.
To create a new document based on a custom template
Call the M:Microsoft.Office.Interop.Word.Documents.Add(System.Object@,System.Object@,System.Object@,System.Object@) method of the T:Microsoft.Office.Interop.Word.Documents collection and specify the path to the template. To use this code example, run it from the
ThisDocumentorThisAddInclass in your project.
How to: Programmatically Open Existing Documents
Host Items and Host Controls Overview
Programmatic Limitations of Host Items and Host Controls
Optional Parameters in Office Solutions