Application.NewDocument property (Word)

Returns a NewFile object that represents a document listed on the New tab.

Syntax

expression. NewDocument

expression A variable that represents an Application object.

Example

This example creates a document list item on the New Document task pane in the New From Existing File section.

Sub CreateNewDocument() 
 Application.NewDocument.Add FileName:="C:\NewFile.doc", _ 
 Section:=msoNewfromExistingFile, DisplayName:="New File", _ 
 Action:=msoCreateNewFile 
End Sub

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.