Document.Windows property (Word)
Returns a Windows collection that represents all windows for the specified document. Read-only.
Syntax
expression.Windows
expression A variable that represents a Document object.
Remarks
For information about returning a single member of a collection, see Returning an object from a collection.
Example
This example displays the number of windows for the active document, both before and after the NewWindow method is run.
MsgBox Prompt:= ActiveDocument.Windows.Count & " window(s)", _
Title:= ActiveDocument.Name
ActiveDocument.ActiveWindow.NewWindow
MsgBox Prompt:= ActiveDocument.Windows.Count & " windows", _
Title:= ActiveDocument.Name
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.