View Enhanced<--->Simple Wireframe

Is there in X5/X6 any kind possibilities to have default SHIFT F9 switch between Enhanced and Simple Wireframe? Every time when start new file it is  necessary to do switch between Enhanced and Simple Wireframe, how Corel remember this two options.

Parents
  • I have a very simple macro and I have an icon assigned to it and on a custom tool bar. When I click on the macro, it toggles the view between Wire Frame and Enhanced view. This macro can have a key assigned to it, as most other custom commands and macros can. (menu:Tools->Customization).

    Here is the content of the simple macro:

    ------------------------------

    Sub ToggleView()
        '
        ' Generated 12/04/2008
        '
        ' Description:
        '                Toggles between Enhanced with OverPrints view and
        '                WireFrame view
        '
        If ActiveWindow.ActiveView.Type = cdrWireframeView Then
            ActiveWindow.ActiveView.Type = cdrEnhancedViewWithOverprints
        Else
            ActiveWindow.ActiveView.Type = cdrWireframeView
        End If
    End Sub

    -----------------------------------

Reply Children
No Data