CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE
Over 1.096.000 registered users (EN+CZ). AutoCAD tips, Inventor tips, Revit tips. Try the new precise Engineering calculator. New AutoCAD 2026 commands and variables.
Plex.Earth connects AutoCAD and Google Earth

CAD tip CAD tip # 6924:

Question

CAD 
 %  platform  category 
A
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    14450×  
applies to: AutoCAD ·

See also:
Tip 14477:PurgeAll - automation of DWG file cleaning
Tip 14402:What is the difference between the BLOCKREPLACE, BREPLACE, REPLACEBLOCK, RIBLOCK and BLKREDEF commands?
Tip 14333:A free tool for bulk-purging of DWG drawing files.
Tip 13675:Two PURGE commands in Autodesk Civil 3D.
Tip 13481:How to clear the list of recent blocks in the palette?


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
  



Featuring:
Use Google Earth images in your AutoCAD projects with the Plex.Earth Tools More info


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