Document.Windows Property

Word Developer Reference

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.

Visual Basic for Applications
  MsgBox Prompt:= ActiveDocument.Windows.Count & " window(s)", _
    Title:= ActiveDocument.Name
ActiveDocument.ActiveWindow.NewWindow
MsgBox Prompt:= ActiveDocument.Windows.Count & " windows", _
    Title:= ActiveDocument.Name

See Also