Application.NewDocument Property (Word)
Returns a NewFile object that represents a document listed on the New Document task pane.
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