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