API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.Windows property
Gets a collection of windows open in the application
Syntax:
Property Get Windows() As Windows
Remarks:
The Windows property returns the collection of document windows open in the application.
Examples:
The following VBA example sets the zoom level of all document windows to 200%.
Sub WindowsZoom()
Dim w As Window
For Each w In Windows
  w.ActiveView.Zoom = 200
Next w 
End Sub
The following VBA example tiles the document windows horizontally.
Sub WindowsTile()
Windows.Arrange cdrTileHorizontally 
End Sub