Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Options options = new Options();
GeometryElement geoEle = guidline.get_Geometry(options);
foreach (var subEle in geoEle)
{
Line line = subEle as Line;
if (line!= null)
{
point1 = line.GetEndPoint(0);
point2 = line.GetEndPoint(1);
}
}
Hi Guys,
I have detail item (Line based family), just a simple line inside but I'm having trouble getting its geometry. Any ideas?
below code is not working.
Thanks
Solved! Go to Solution.