Message 1 of 3

Not applicable
07-15-2013
09:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I had extracted geometries from Revit as below. I used some codes form Online documents.
I collected geometries with the filter like...
FilteredElementCollector collector = new FilteredElementCollector(commandData.Application.ActiveUIDocument.Document);
ICollection<Element> collection = collector.OfClass(typeof(HostObject)).ToElements();
Then, how can I collect all visible geometries???
I guess the solution is configuring filter well. But, it is not easy for me.
If any of you have some tips for me, please help me.
Thank you.
Solved! Go to Solution.