musasiojw Posted July 10, 2015 Posted July 10, 2015 How can i underline a single-line text in AutoCAD 2014? Quote
BIGAL Posted July 11, 2015 Posted July 11, 2015 There is some lisps out there underline and UPPER & lowercase just pick text. ; convert text to uppercase (defun c:ucase (/ t2 tv tvu tv1 t1) (setvar "cmdecho" 0) (setq t2 (entsel "\nPick text:")) (setq t2 ( car t2)) (setq t2 (entget t2)) (setq tv (assoc 1 t2)) (setq tvu (cdr tv)) (setq tvu (strcase tvu)) (setq tv1 (cons (car tv) tvu)) (setq t1 (subst tv1 tv t2)) (entmod t1) (setvar "cmdecho" 1) ) (c:ucase) Quote
musasiojw Posted July 11, 2015 Author Posted July 11, 2015 Hi BIGAL, your method seems to be much complicated. Am a newbie, though i will try it out. Danallis method was simpler and really worked for me. Thank you fr your help. I appreciate very much Quote
Dadgad Posted July 14, 2015 Posted July 14, 2015 Welcome to CADTutor bejant. Thanks, I didn't know that. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.