ssget function

ssget function

Anonymous
Not applicable
856 Views
3 Replies
Message 1 of 4

ssget function

Anonymous
Not applicable

Hi guys,

 

What is the use of ssget?

BTW newbhie here.

 

 

Thanks in advance

 

 

 

 

 

 

0 Likes
857 Views
3 Replies
Replies (3)
Message 2 of 4

Satish_Rajdev
Advocate
Advocate

It helps to selecting objects with filters, more details

 

You can play with DXF codes for selecting objects by its properties, more details on DXF code

 

Examples for selecting specific objects :

 

(ssget '((0 . "CIRCLE")))             ; for Circle

(ssget '((0 . "LINE")))               ; for Line

(ssget '((0 . "*POLYLINE")))          ; for Polyline

 

 

Examples for selecting objects by its layer :

 

(ssget '((0 . "CIRCLE") (8 . "layer 1")))     ; for Layer 1

(ssget '((0 . "CIRCLE") (8 . "layer 2"))) ; for Layer 2

(ssget '((0 . "CIRCLE") (8 . "layer 3"))) ; for Layer 3

 

 

Best Regards,
Satish Rajdev


REY Technologies | Linked IN | YouTube Channel


 

0 Likes
Message 3 of 4

Anonymous
Not applicable

Sir Satish,

 

 

Thank you so much sir for answering my question about ssget function.

 

 

Best Regards

Albert Ebo

0 Likes
Message 4 of 4

Kent1Cooper
Consultant
Consultant

Read about it [as about any AutoLisp function or AutoCAD command] in Help -- that will always tell you more than anyone is likely to spell out for you here.

Kent Cooper, AIA
0 Likes