Previous Document Next Document
ActiveView.Zoom

Property Zoom As Double

Member of ActiveView

The Zoom property returns or sets a magnification level in the active view of CorelDRAW.

The following code example sets the zoom level of the active document to 200%, if the current zoom level is less than 200%.

Sub Zoom() 
 With ActiveWindow.ActiveView 
  If .Zoom < 200 Then .Zoom = 200 
 End With 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.