API Documentation > CorelDRAW > 2025-v26 > ActiveView > IVGActiveView
ActiveView.SetActualSize method
Sets zoom to 1:1
Syntax:
Sub SetActualSize()
Remarks:
The SetActualSize method adjusts the current view so that all objects in the view are visible in their actual size. For example, if an ellipse in the active view has a width of two inches, the SetActualSize method adjusts the current view so the ellipse has a width of two inches on the screen.
Examples:
The following VBA example sets the current view to reflect the actual size of the object in the view.
Sub ViewActual()
ActiveWindow.ActiveView.SetActualSize 
End Sub