Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Are there any way to retrieve wall common edges for create dimensions?
Solved! Go to Solution.
Are there any way to retrieve wall common edges for create dimensions?
Solved! Go to Solution.
Dear takatori,
Please set ComputeReferences to "true" when you get geometry of wall, then you can get the reference of each edge.
Options options = new Options(); options.ComputeReferences = true; options.DetailLevel = ViewDetailLevel.Fine; GeometryElement geomElem = srcElement.get_Geometry(options);
I have attached the complete codes, please have a look.
Thank you very much. I'll try to use your code. I have never think of the idea that getting common edge's reference from edge line of face in solid. Great!