API Documentation > CorelDRAW > 2025-v26 > Windows > IVGWindows
Windows.Arrange method
Arranges the windows
Syntax:
Sub Arrange(ByVal Style As cdrWindowArrangeStyle)
Parameters:
Name Type Description
Style
Remarks:
The Arrange method arranges all windows in a specified style. A window can be tiled horizontally or vertically, or it can be cascaded in the application window.
Examples:
The following VBA example arranges the application's windows vertically.
Sub Test()
ActiveDocument.Windows.Arrange cdrTileVertically 
End Sub