title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.Windows property (PowerPoint) |
vbapp10.chm503009 |
|
|
c6d001c6-b589-47bc-bf6a-d1cf9b277f3d |
06/08/2017 |
medium |
Returns a DocumentWindows collection that represents all open document windows. Read-only.
expression.Windows
expression A variable that represents an Application object.
DocumentWindows
This example closes all windows except the active window.
With Application.Windows
For i = .Count To 2 Step -1
.Item(i).Close
Next
End With
[!includeSupport and feedback]