Application.NewDocument Property

Word Developer Reference

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.

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

See Also