page setup

Discussion in 'AutoCAD' started by mart, Sep 1, 2003.

  1. mart

    mart Guest

    hi,
    you know when you have a drawing with lots of layouts and you have to print
    on a different printer?
    is there an easier way to change the printer on all the layouts than
    opening all the layouts individually?
     
    mart, Sep 1, 2003
    #1
  2. mart

    Smackypete Guest

    Using Vlisp:
    Create a loop that cycles through the layout collection and
    for each one,

    (setq CL (vla-get-activelayout (active-document)))
    (vlax-invoke CL "RefreshPlotDeviceInfo")
    (vlax-put CL "ConfigName" "PlotterName")
     
    Smackypete, Sep 1, 2003
    #2
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.