SlabShapeVertex类用于表示Revit中的楼板形状的顶点。
SlabShapeVertex类有以下属性:
SlabShapeVertex类没有可用的方法。
SlabShapeVertex类有以下构造函数:
下面是一个创建SlabShapeVertex对象的示例:
// create a new XYZ object to represent the vertex position
XYZ position = new XYZ(0, 0, 0);
// get the levels for the vertex
Level bottomLevel = doc.GetElement(bottomLevelId) as Level;
Level topLevel = doc.GetElement(topLevelId) as Level;
// create a new SlabShapeVertex object
SlabShapeVertex vertex = new SlabShapeVertex(position, bottomLevel, topLevel);
SlabShapeVertex类是只读的,不能修改它的属性。要更改楼板形状,您需要创建一个新的形状,并将其应用于楼板。