ectech Posted April 28, 2010 Posted April 28, 2010 Dear All, I would like to select all polyline on layer starting with "ABCXXX" , anyone can help me to do that ? Thanks ! (setq sset (ssget "_X" (LIST '(0 . "lwpolyline") (8 . "abc*") (cons 410 (getvar "CTAB"))))) Quote
MSasu Posted April 28, 2010 Posted April 28, 2010 The answer is in your post, just have missed a quote: (ssget "_X" (LIST '(0 . "lwpolyline") [color=red]'[/color](8 . "abc*") (cons 410 (getvar "CTAB"))))) Regards, Quote
fixo Posted April 28, 2010 Posted April 28, 2010 Dear All, I would like to select all polyline on layer starting with "ABCXXX" , anyone can help me to do that ? Thanks ! (setq sset (ssget "_X" (LIST '(0 . "lwpolyline") (8 . "abc*") (cons 410 (getvar "CTAB"))))) I'm still using CONS always: (setq sset (ssget "_X" (list (cons 0 "lwpolyline") (cons 8 "abc*") (cons 410 (getvar "CTAB"))))) ~'J'~ 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.