Does anybody know how to access and add the filters from the filters tab in the Visibilty Graphics from the Revit API in C#? I am using versie 2014 of the API. In the second screenshot the list is empty but in my revit project it is filled with filters.

enter image description here

enter image description here

有帮助吗?

解决方案

I found the solution:

FilteredElementCollector viewCollector = new FilteredElementCollector(doc);
viewCollector.OfClass(typeof(FilterElement));

the FilterElements in the collection are the ones in the dialog describe in my question.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top