Autodesk.Revit.DB.Architecture.StairsComponentConnectionEndType
是Revit中一种枚举类型,用于定义楼梯组件连接端点的类型。
StairsComponentConnectionEndType
枚举了以下数值:
None
: 表示该连接端点无效Bottom
: 表示该连接端点为楼梯组件的底部Top
: 表示该连接端点为楼梯组件的顶部使用 StairsComponentConnectionEndType
类型可以定义连接楼梯组件的各个端点的类型。在Revit API中,通常将其作为参数传递给诸如 Document.CreateNewStairs()
等创建楼梯组件的方法。
// 声明一个 StairsComponentConnectionEndType 类型的变量
StairsComponentConnectionEndType connectionEndType;
// 将变量赋值为 Bottom
connectionEndType = StairsComponentConnectionEndType.Bottom;
// 将变量赋值为 Top
connectionEndType = StairsComponentConnectionEndType.Top;