CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 15901

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    10835×  
Prices - CAD eShop:
applies to: AutoCAD ·

See also:
Tip 13675:Two PURGE commands in Autodesk Civil 3D.
Tip 13481:How to clear the list of recent blocks in the palette?
Tip 12933:Purging small objects from a DWG drawing - PurgeSmall.
Tip 12592:How to automatically purge old backup files .BAK?
Tip 12198:How to remove duplicate points and COGO points from a DWG?


Back   All CAD Tips



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:
Publish interactive 3D PDF models from AutoCAD, Inventor or Revit with Share3D More info


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist