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.