该文档介绍了Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionGeneralLZ类的用法及其属性和方法。
StructuralSectionGeneralLZ类表示具有Z(XY)轴向剖面图的结构截面。它继承自StructuralSectionGeneral类,以提供更具体的剖面形状。
类型:Curve
获取或设置截面在X轴上的剖面图。
类型:Curve
获取或设置截面在Y轴上的剖面图。
类型:Curve
获取或设置截面在Z轴上的剖面图。
该类没有公共方法。
以下示例演示了如何创建一个具有Z轴向剖面图的StructuralSectionGeneralLZ对象。
// 创建一个Z轴向的剖面图
Curve zCurve = Line.CreateBound(new XYZ(0, 0, 0), new XYZ(0, 0, 10));
// 创建StructuralSectionGeneralLZ对象
StructuralSectionGeneralLZ section = new StructuralSectionGeneralLZ();
// 将Z轴向剖面图设置为对象的ZAxisSection属性
section.ZAxisSection = zCurve;