如何使用 Revit 拉取文档的起始视图 API
How to pull the starting view for document using the Revit API
如何使用 Revit API 获取 Document
的起始视图?使用用户界面访问它的等效方法如下所示:
我使用了 Revit Lookup tool 并浏览了数据库,找到了一个名为 StartingViewSettings
的 class 和 属性 ViewId
这将使我得到 ElementId
的起始视图。我获取视图的实际代码如下
FilteredElementCollector startingViewSettingsCollector =
new FilteredElementCollector(document);
startingViewSettingsCollector.OfClass(typeof(StartingViewSettings));
View startingView = null;
foreach(StartingViewSettings settings in startingViewSettingsCollector)
{
startingView = (View)document.GetElement(settings.ViewId);
}
如何使用 Revit API 获取 Document
的起始视图?使用用户界面访问它的等效方法如下所示:
我使用了 Revit Lookup tool 并浏览了数据库,找到了一个名为 StartingViewSettings
的 class 和 属性 ViewId
这将使我得到 ElementId
的起始视图。我获取视图的实际代码如下
FilteredElementCollector startingViewSettingsCollector =
new FilteredElementCollector(document);
startingViewSettingsCollector.OfClass(typeof(StartingViewSettings));
View startingView = null;
foreach(StartingViewSettings settings in startingViewSettingsCollector)
{
startingView = (View)document.GetElement(settings.ViewId);
}