CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor and other Autodesk products [www.cadforum.cz]
Cesky English Deutsch
Login/Register:
 Visitors: 2317 

CAD tip CAD tip # 6924:

Question CAD 
 %  platform  category 
Q - question

Just PURGE - no question asked.

A - answer If you want to perform a PURGE in your drawing, without any interactive questions, you can use the commandline version of this command: -PURGE, or a simple LISP macro:
  1. Either add the following menu macro to your menu:

    _-PURGE;_All;*;_N;

  2. Or add the the following LISP macro:

    (vl-load-com)(vla-purgeall (vla-get-activedocument (vlax-get-acad-object)))

    Or use LISP to define your own new command PURGEA:

      
    (defun C:PURGEA ()  
    (vl-load-com)  
    (vla-purgeall (vla-get-activedocument (vlax-get-acad-object)))  
    (prin1)  
    )  
    
ACAD
100% *  CAD 
8.9.2009    2390x  
Comments   Tell a friend
applies to: AutoCAD ·

See also:
Tip 7565:Where from comes the layer $AUDIT-BAD-LAYER ?
Tip 7463:One or more objects in this drawing cannot be saved to the specified format.
Tip 7169:PreSave reactor - automatic operations on drawing save.
Tip 6807:AutoCAD progressbar "Scanning the Drawing..."
Tip 6708:How to remove unwanted references to .DXE files?


Back   All CAD Tips All CAD tips&tricks

AutoCAD reports: error: bad argument type: fixnump: « | » Product codes (registry) of Autodesk CAD applications.

Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
DwgTextTranslator translates a series of drawings from one language to another using MS Access.
Download a fully functional trial version.


Please use these tips at your own risk.
CAD Studio (Xanadu) is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist