Message 1 of 2
Revit SDK: Get all scene's elents
Not applicable
07-04-2018
11:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello guys,
I use revit sdk to create a plugin which helps me improve my working process.
I'm trying to get all the elements in the open scene with the following script:
FilteredElementCollector collector
= new FilteredElementCollector(doc)
.WhereElementIsNotElementType();
I get most of the scene's elements but for unseen reason there are few object which doesn't been collected.
Best.