Object Model Reference : Classes : A : Application : Properties : Application.Windows |
Property Windows As Windows
Member of Application
The Windows property returns the collection of document windows open in the application.
The Windows property returns a read-only value.
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 |
Copyright 2013 Corel Corporation. All rights reserved.