Global.NewWindow method (Word)
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 'Global' object.
Return value
Window
Remarks
If the NewWindow method is used with the Application object, a new window is opened for the active window. The following two instructions are functionally equivalent.
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.
MsgBox Windows.Count & " windows open"
Windows("Document1").NewWindow
MsgBox Windows.Count & " windows open"
This example opens a new window, arranges all the open windows, closes the new window, and then rearranges the open windows.
Set myWindow = NewWindow
Windows.Arrange ArrangeStyle:=wdTiled
myWindow.Close
Windows.Arrange ArrangeStyle:=wdTiled
See also
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.