sivapathasunderam Posted January 18, 2017 Posted January 18, 2017 (edited) Dear colleagues, It's impossible to select all the table data rows ''not the title or header row'' by (quick select or filter) at once for change of it's height My one dwg has 75 tables need help thanks Siva Edited January 18, 2017 by sivapathasunderam add one sentence Quote
Roy_043 Posted January 18, 2017 Posted January 18, 2017 Have you tried changing this in the table style? Quote
satishrajdev Posted January 18, 2017 Posted January 18, 2017 Here's a quick solution, This skips the 1st row and changes the row height of remaining rows as per your input. Not sure this what you want :- (defun c:test (/ a b c d i) (if (and (setq a (ssget '((0 . "*TABLE")))) (setq b (getdist "\nSpecify Row Height : ")) ) (repeat (setq i (sslength a)) (setq c (vlax-ename->vla-object (ssname a (setq i (1- i))))) (setq d 1) (while (< 0 d (vla-get-rows c)) (vla-setrowheight c d b) (setq d (1+ d)) ) ) ) (princ) ) 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.