Jump to content

Recommended Posts

Posted

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")))))

Posted

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,

Posted
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'~

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...