Page setup - removing

Discussion in 'AutoCAD' started by Ted Broekhuizen, Nov 10, 2004.

  1. I have inherited dozens of page setups via a "master" drawing template that
    I want to delete.
    (I have cleaned the master).
    How do a remove from many drawings affected?

    Thanks
     
    Ted Broekhuizen, Nov 10, 2004
    #1
  2. Ted Broekhuizen

    Tom Stright Guest

    ; DAPS - Delete All Page Setups
    ;
    (defun c:daps ()
    (vl-load-com)
    (vlax-for ps (vla-get-plotconfigurations
    (vla-get-activedocument
    (vlax-get-acad-object)))
    (vla-delete ps)
    )
    )
     
    Tom Stright, Nov 12, 2004
    #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.