Decription: Create a shortcut to this in CorelDraw and you can toggle your views between the most popular views, wireframe and enhanced views.
Date: 2010-05-04 Author: Unknown or anonymous.
Code:
Option Explicit
Sub toggleView()
With ActiveDocument.ActiveWindow.ActiveView
If .Type = cdrEnhancedView Then
.Type = cdrWireframeView
Else
.Type = cdrEnhancedView
End If
End With
End Sub
|