Autodesk.Revit.DB.SectionType
是一种表示构建模型中截面的类型的枚举。截面是一个平面图形,表示建筑元素沿着一个平面的切片。
Autodesk.Revit.DB.SectionType
中包含以下枚举成员:
以下示例演示如何在Revit API中使用SectionType枚举:
// 获取当前视图
View currentView = ActiveUIDocument.Document.ActiveView;
// 创建剖面视图
SectionView sectionView = SectionView.CreateSection(ActiveUIDocument.Document, currentView.Id, SectionType.Primary);
// 创建立面视图
ElevationView elevationView = ElevationView.CreateElevation(ActiveUIDocument.Document, currentView.Id, SectionType.Elevation);
在上面的例子中,我们创建了一个截面视图和一个走向视图,并且使用了枚举中定义的有效截面类型。
Autodesk.Revit.DB.SectionType
是一种表示构建模型中截面类型的枚举。该枚举包含三个成员,分别为 Invalid
、Primary
和 Elevation
。开发人员可以使用这些成员来创建不同类型的截面视图和走向视图。