Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何从 C# 中 Revit API 的 Visibilty Graphics 中的过滤器选项卡中访问和添加过滤器吗?我正在使用 API 的 versie 2014。在第二个屏幕截图中,列表是空的,但在我的 revit 项目中,它充满了过滤器。
我找到了解决方案:
FilteredElementCollector viewCollector = new FilteredElementCollector(doc); viewCollector.OfClass(typeof(FilterElement));
集合中的 FilterElements 是我的问题中描述的对话框中的那些。