To Switch to Floating Viewports (VBA/ActiveX)

You can switch from paper space to model space in a floating viewport on a layout.

  1. Use the Display method to initialize graphic settings.
    ThisDrawing.ActivePViewport.Display TRUE
  2. Toggle the MSpace property to TRUE.
    ThisDrawing.MSpace = TRUE

    This will place you in model space, floating viewports.

    Note: You must create floating viewports before you attempt to switch to model space.