View Full Version : MultiLeader Styles - PURGING
scott.at.tos
2008-02-27, 04:59 PM
Does anyone know how to purge a multileader style (cmleaderstyle) from the command line or a lisp routine?
H'Angus
2008-02-27, 05:23 PM
Does anyone know how to purge a multileader style (cmleaderstyle) from the command line or a lisp routine?
Multileader styles are purged just by using the standard PURGE command.
NB: They will not be purged if they are in use in the drawing or set as current, you can see if a style is set to current on the multileader panel of the dashboard.
Also you can delete individual styles in the multileader style manager by right clicking on a style the click delete.
jpduhon
2008-02-29, 03:47 PM
But not if you use purge in a macro like this:
^C^C_-purge;all;*;n;Why?
But not if you use purge in a macro like this:
^C^C_-purge;all;*;n;Why?
Because it is not an individual option on the command line PURGE command.
jmcbride.161140
2008-04-07, 03:21 PM
Try this.
;------------------------------------------------------------------ -----
;-PA- Purge All
;
;
(defun c:pa ( )
(setvar "cmdecho" 0)
(command "purge" "a" "" "n")
(command "purge" "a" "" "n")
(command "purge" "a" "" "n")
(setvar "cmdecho" 1)
(princ "\npurge all complete")
(princ)
)
;
;
;EOFunc c:PA
;
;
Powered by vBulletin® Version 4.1.11 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.