Switch to the Model Space Layout

AutoCAD ActiveX

 
Switch to the Model Space Layout
 
 
 

From paper space, you can switch to model space floating viewports or model space tiled viewports.

To switch to floating viewports

  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.

NoteYou must create floating viewports before you attempt to switch to model space.

To switch to tiled viewports

To switch to tiled viewports, perform this additional step:

  • Set the ActiveSpace property to acModelSpace:
ThisDrawing.ActiveSpace = acModelSpace