CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE

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   15076×  
   
this tip shared by ARKANCE experts applies to: AutoCAD ·

See also:
Tip 15017:AutoCAD Drawing Cleanup Utility - a standalone tool to purge your DWG files.
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.


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
  





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