Compartilhar via


Window.NewWindow Method

Word Developer Reference

Opens a new window with the same document as the specified window. Returns a Window object.

Syntax

expression.NewWindow

expression   Required. A variable that represents a Window object.

Return Value
Window

Remarks

A colon (:) and a number appear in the window caption when more than one window is open for a the same document. The following two instructions are functionally equivalent.

Visual Basic for Applications
  Set myWindow = ActiveDocument.ActiveWindow.NewWindow
Set myWindow = NewWindow

Example

This example posts a message that indicates the number of windows that exist before and after you open a new window for Document1.

Visual Basic for Applications
  MsgBox Windows.Count & " windows open"
Windows("Document1").NewWindow
MsgBox Windows.Count & " windows open"

See Also