Documents.Add(Object, Object, Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a Document object that represents a new, empty document added to the collection of open documents.
public Microsoft.Office.Interop.Word.Document Add (ref object Template, ref object NewTemplate, ref object DocumentType, ref object Visible);
abstract member Add : obj * obj * obj * obj -> Microsoft.Office.Interop.Word.Document
Public Function Add (Optional ByRef Template As Object, Optional ByRef NewTemplate As Object, Optional ByRef DocumentType As Object, Optional ByRef Visible As Object) As Document
Parameters
- Template
- Object
Optional Object. The name of the template to be used for the new document. If this argument is omitted, the Normal template is used.
- NewTemplate
- Object
Optional Object. True to open the document as a template. The default value is False.
- DocumentType
- Object
Optional Object. Can be one of the following WdNewDocumentType constants: wdNewBlankDocument, wdNewEmailMessage, wdNewFrameset, or wdNewWebPage. The default constant is wdNewBlankDocument.
- Visible
- Object
Optional Object. True to open the document in a visible window. If this value is False, Microsoft Word opens the document but sets the Visible property of the document window to False. The default value is True.