Jump to content

Isolating xref (and not its individual objects)


samifox

Recommended Posts

hi

 

i want to isolate the whole xref (like unload) rather than its indevidual layers. is there a way of doing so with no lisp?

Link to comment
Share on other sites

If you make a new layer, and insert the x-ref onto that layer, then freezing that layer makes the x-ref disappear. Saves having to individually freeze each of the x-ref's layers.

Link to comment
Share on other sites

"...isolate (like unload)"...

 

Ok, isolate is to make that single object visible and unload is to make it disappear. What needs to be the end result??

 

In the case of making is disappear i would use the command 'Hideobjects' when selecting the xref object.

Use 'UNISOLATEOBJECTS' to make it appear again (its different from layon / layiso and freezing layers).

 

 

A lisp i use:

(Defun c:hideob ()
 (command "HIDEOBJECTS")
 (princ)
)

(Defun c:showob ()
 (command "UNISOLATEOBJECTS")
 (princ)
)

Link to comment
Share on other sites

Layer manager. Select the "All non-Xref Layers" filter. Freeze all layers except for the on that the XREF is on.

 

Or without messing with layers use the ISOLATEOBJECTS command.

Link to comment
Share on other sites

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...