Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.2 KB

Word.Document.Windows.md

File metadata and controls

50 lines (30 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.Windows property (Word)
vbawd10.chm158007330
vbawd10.chm158007330
Word.Document.Windows
bb075fd7-2dae-18c9-f49a-0c478d840b76
06/08/2017
medium

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

Document Object

[!includeSupport and feedback]