Purge unnamed page setups

Discussion in 'AutoCAD' started by Dave Klopping, Jun 17, 2004.

  1. Does anyone know how to delete the unnamed page setups (page setup names
    preceded and followed by an *) in a drawing ? Apparently an unnamed page
    setup is created for each layout. We automatically load pre-defined page
    setups when drawings are opened so we don't need to see the unnamed ones.
    They just clutter up the page setup name list.

    Thanks,

    Dave
     
    Dave Klopping, Jun 17, 2004
    #1
  2. Dave Klopping

    ECL-LAF Guest

    try deleting it as you would a regular page setup by
    in the plot dialog
    under page setup name
    click on add
    select/highlight the page setup
    hit delete
     
    ECL-LAF, Jun 22, 2004
    #2
  3. I use this lisp to clean up drawings.

    ; 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)
    )
    )
     
    Aaron Cunningham, Jun 22, 2004
    #3
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.