Visual LISP, AutoLISP and General Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
How can you test if an Xref or Block Insert has been xclipped with a Boundary?
I don't see any difference in the 70 or 71 flags.
Thanks.
Paul Li
Senior Associate
ALTOON PARTNERS LLP
Los Angeles • Amsterdam • Shanghai • Hong Kong • Moscow
444 South Flower Street • 48th Floor • Los Angeles • California • 90071-2901
D +1 213 225 1944 • T +1 213 225 1900 • www.altoonpartners.com
Re: Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
This should work. Haven't used it since I wrote it, as it wouldn't work for what I wanted, but it will return the boundry of a xclip if it has one.
(defun GetSpatialFilter (ename / Data Dict tempDict)
; Get the xclip boundry
(if
(and
(setq Data (entget ename))
(setq Dict (cdr (assoc 360 Data)))
(setq tempDict (dictsearch Dict "ACAD_FILTER"))
(setq tempDict (dictsearch (cdr (assoc -1 tempDict)) "SPATIAL"))
)
(cons '(0 . "SPATIAL_FILTER") (member (assoc 100 tempDict) tempDict))
)
)
Re: Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks this works perfectly.
As a side note, can the same be used to test if a clip boundary exists for Image, DGN, DWF, PDF ?
Paul Li
Senior Associate
ALTOON PARTNERS LLP
Los Angeles • Amsterdam • Shanghai • Hong Kong • Moscow
444 South Flower Street • 48th Floor • Los Angeles • California • 90071-2901
D +1 213 225 1944 • T +1 213 225 1900 • www.altoonpartners.com
Re: Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Don't know. Don't really work with them, but I would think that you could test them with the program, and see what is returned. It wouldn't harm any entity, as it is just looking at stuff.
You're welcome.
Re: Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Nope, your routine did not work for the other object types. Too bad. Thanks anyways.
Paul Li
Senior Associate
ALTOON PARTNERS LLP
Los Angeles • Amsterdam • Shanghai • Hong Kong • Moscow
444 South Flower Street • 48th Floor • Los Angeles • California • 90071-2901
D +1 213 225 1944 • T +1 213 225 1900 • www.altoonpartners.com
Re: Does XREF/BLOCK have Boundary
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Looks like for images you have to look at dxf codes 13 ( size of the image ) and 14 ( points of clipping ) and compare them, because even when I inserted an image, it has dxf codes 14, so it seems they are always clipped. But if code 91 is greater than 2, then there is some real clipping for sure, but the clipping could be the whole size of the image.

