Display Layout and Model Tabs variable?

Discussion in 'AutoCAD' started by Martin Shoemaker, Jul 28, 2004.

  1. If there a variable for this? Couldn't find one in Help. If not, is
    there a way to toggle the layout and model tabs on and off, preferably
    in lisp?

    Thanks,
    Martin
     
    Martin Shoemaker, Jul 28, 2004
    #1
  2. (setenv "ShowTabs" "0")
    (setenv "ShowTabs" "1")
     
    Jason Piercey, Jul 28, 2004
    #2
  3. Or, if you prefer activeX methods.

    (setq
    display
    (vla-get-display
    (vla-get-preferences
    (vlax-get-acad-object))))

    (vla-put-displaylayouttabs display :vlax-false)
    (vla-put-displaylayouttabs display :vlax-true)
     
    Jason Piercey, Jul 28, 2004
    #3
  4. Thanks

    Martin
     
    Martin Shoemaker, Jul 28, 2004
    #4
  5. You're welcome.
     
    Jason Piercey, Jul 28, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.