Previous Document Next Document
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 code 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 code example tiles the document windows horizontally. 
Sub WindowsTile() 
 Windows.Arrange cdrTileHorizontally 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.