
Originally Posted by
ekazagrandi679332
So far no visible benefits from the new DIM command, some confusion instead. Would some one please tell me how I can do DIM - UPDATE now? It is no longer available as an option.
DIM UPDATE has been moved to -DIMSTYLE APPLY. I know -- a pain. I made a short Lisp routine to restore a diimstyle and select objects to update, because I have a habit of forgetting to change my dimstyle before I start dimensioning.
Code:
; DimStyle Restore
(defun C:DSR( / cmdecho newstyle updateset)
(setq cmdecho (getvar "CMDECHO"))
(setq newstyle (getstring "\nEnter dimension style name to make current: "))
(if newstyle
(progn
(setvar "CMDECHO" 0)
(if (tblsearch "DIMSTYLE" newstyle)
; Then
(progn
(command "._-DIMSTYLE" "_R" newstyle)
(princ "\nSelect dimensions to update")
(command "._DIM1" "_UP")
) ; end progn
; Else
(princ (strcat "\nDimension style '" newstyle "' does not exist."))
) ; end if
(setvar "CMDECHO" cmdecho)
) ; end progn
) ; end if
(princ)
) ; end defun C:DSR