API Documentation > CorelDRAW > 2025-v26 > ActiveView > IVGActiveView
ActiveView.Type property
Gets or sets the type of the active view
Syntax:
Property Get Type() As cdrViewType
Property Let Type(ByVal Value As cdrViewType)
Remarks:
The Type property returns or specifies the active view quality in CorelDRAW. A view quality lets you choose how CorelDRAW displays a drawing on the screen. If you have a fast computer or want to approximate how a drawing looks when printed, use the Normal or Enhanced view. If you have a slower computer or want to speed up the refresh rate of a complex drawing, you may find the Simple Wireframe or Wireframe view to be the most effective.
Examples:
The following VBA example sets the view type of the current window equal to a value that represents the Enhanced view.
Sub DocumentType()
ActiveView.Type = cdrEnhancedView 
End Sub