WHAT IS THE COMMAND TO GO BACK TO MODEL SPACE FROM PAPERSPACE? (I DON'T MEAN "MSPACE")
Hello.
The left most tab is labeled Model. In AutoCAD the command is "MODEL". Can someone please tell me what the command is for BricsCAD?
I don't mean "MSPACE or PSPACE".
Regards
Dallas
dallas@cadoperator.co.nz
0
Comments
-
Ok. I access it from the LAYOUT command.0
-
AI_MSPACE / AI_PSPACE ?
Regards
Christian0 -
TILEMODE and CTAB can also be used.0
-
A custom command to go back and forth between the model tab and a particular layout tab:
[code](defun c:ToggleTileMode ()
(sssetfirst nil nil)
(if (= (getvar "TILEMODE") 0)
(progn (setvar "TILEMODE" 1) (princ "TILEMODE = 1 = Model tab."))
(progn (setvar "TILEMODE" 0) (princ "TILEMODE = 0 = Layout tab."))
))[/code]0
This discussion has been closed.