Share via


Application.Windows Property (PowerPoint)

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.

With Application.Windows

    For i = .Count To 2 Step -1

        .Item(i).Close

    Next

End With

See Also

Concepts

Application Object

Application Object Members