Jump to content

layer selection


monkeyboy
 Share

Recommended Posts

hey,

 

i would like to know whether it is possible in autocad tot select all objects (lines, text, dimensions) that are in one layer all together, with out having to click every single object, or without having to turn off the other layers?

 

thnx,

monkeyboy

Link to comment
Share on other sites

i would like to know whether it is possible in autocad tot select all objects (lines, text, dimensions) that are in one layer all together, with out having to click every single object, or without having to turn off the other layers?

if you want to use autolisp

 

Then

 

(ssget "x" (list (cons 8 "yourlayernamegoeshere")))

 

or using (wcmatch) wild card matching

 

(ssget "x" (list (cons 8 "*BLDG*")))

 

would ONLY layers with the *BLDG* text within the layer Names

 

**

 

in DXF codes, assoc 8 = LayerName

 

**

 

This can be used transparently while still in a command

to select all items on a specified Layer

 

this is useful for the "draworder" command etc other uses too

 

Thanks

 

Randy

Link to comment
Share on other sites

Clickon an object on the layer you want, then go to 'edit' dropdown menu and click the 'select similar' option. (this doesnt isolate but will select all similar). To isolate you can then do a right click and you'll find several isolate and hide options! I think this may be new in 2005 tho' ?!?! I never noticed it in 3.3 before I upgraded.

Regards,

Al.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...