Background mask
Background mask
(OP)
Is there an easy LISP to turn on the background mask using the drawing background color for selected MText and DIM objects?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Background mask
RE: Background mask
RE: Background mask
which version? I think in 2008 you can use a lisp...
L.
ADT 2004
RE: Background mask
RE: Background mask
(Dimension styles, text tab, fill color)
On most of our dwgs, though, we only use it for specific dimensions. Easiest way I've found to do that, is to change one, then paste properties. (Works for mtext too.) We usually throw a couple dims into the drawing, with the mask on, and then paste properties as we go.
I know there's got to be an easier way, but I don't know what it is.
RE: Background mask
DEFUN C:DBM (/ DTF DTC NTF NTC) ; Toggle Selected and Future Dimension Background Mask On or Off
(SETQ DTF (GETVAR "DIMTFILL")
DTC (GETVAR "DIMTFILLCLR")
NTF 1
NTC 7
)
(IF (= DTF 1) (SETQ NTF 0 NTC 0))
(SETVAR "DIMTFILL" NTF)
(SETVAR "DIMTFILLCLR" NTC)
(COMMAND "DIM1" "UPDATE" PAUSE)
; (SETVAR "DIMTFILL" DTF)
; (SETVAR "DIMTFILLCLR" DTC)
(PRINC)
)
RE: Background mask
well done, I did not get it...
L.
ADT 2004