Application.Windows

This property returns a collection of all open windows.

This property is read only.

Syntax Parameters Return Value
- - Windows

SVB Example

Tiling all open windows:

Option Base 1
Option Explicit
Sub Main
    'all open windows will be tiled vertically
    Application.Windows.Arrange(scTiledVertical)
End Sub