Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
HI
I found a lot of routines to Change the Mtext width to 0, but I'm looking for one that just ajust the width like in the DWG example attached.
The Routine im using for the Moment:
(defun c:<test1 (/ ss acDoc i e) (if (setq ss (ssget "_:L" '((0 . "MTEXT")))) (repeat (setq i (sslength ss)) (setq e (entget (ssname ss (setq i (1- i)))) e (append e '((75 . 0))) e (subst '(41 . 0.0) (assoc 41 e) e) ) (entmod e) ) ) )
Thanks for help
Solved! Go to Solution.