 - (defun c:tt ()
- (if (setq ss (ssget '((0 . "TEXT,mtext,line"))))
- (if (setq ssl (ssget "p" '((0 . "line"))))
- (progn
- (command "chprop" ssl "" "La" "2细实线" "")
- (command "select" ss "r" ssl "")
- (command "chprop" (ssget "p") "" "La" "8文字层" "")
- )
- (command "chprop" ss "" "La" "8文字层" "")
- )
- )
- (princ)
- )
|