Message 1 of 3
Family Instance Point Reference
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
I am using the solution from "The Building Coder" (below) to get the point reference from family instances and I noticed that some families does not have a point reference. Why is that so? Is there another way to get point reference. Can I create a point reference?
Thank you in advance.
static Reference GetFamilyInstancePointReference( FamilyInstance fi ) { return fi.get_Geometry( _opt ) .OfType<Point>() .Select<Point, Reference>( x => x.Reference ) .FirstOrDefault(); }