Application.Windows Property

PowerPoint Developer Reference

Returns a DocumentWindows collection that represents all open document windows. Read-only.

Syntax

expression.Windows

expression   A variable that represents an Application object.

Return Value
DocumentWindows

Example
This example closes all windows except the active window.

Visual Basic for Applications
  With Application.Windows
    For i = .Count To 2 Step -1
        .Item(i).Close
    Next
End With

See Also