• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Visual LISP, AutoLISP and General Customization

    Reply
    Distinguished Contributor
    Posts: 222
    Registered: ‎08-29-2003

    Lisp to change Plot Style Table

    218 Views, 1 Replies
    10-03-2012 02:15 PM

    Is it possible to create a lisp that would change the plot style table?  I don't know of any variable to type to change that.  We convert drawings from Solidworks to AutoCad and use the basic monochrome plot style.  I'd like to easily change that since the act of doing that is repeated many times.

     

     

    Thanks,

    Brandon

    Please use plain text.
    *Expert Elite*
    Posts: 842
    Registered: ‎08-16-2007

    Re: Lisp to change Plot Style Table

    10-03-2012 03:00 PM in reply to: bzeone

    This is what is needed to determine the current plotstyle using vlisp.  Change the get to a put and add the name just before the last parenthesis in quotes.

    (vla-get-stylesheet(vla-item(vla-get-layouts(vla-get-activedocument(vlax-get-acad-object)))(getvar "ctab")))

     

    Please use plain text.