该类代表具有垂直和水平边缘的Sigma型剖面的结构截面。该类是Revit API的一部分,可用于创建建筑模型中的结构元素。
double OverallHeight
:获取或设置该剖面的总高度。double WebThickness
:获取或设置该剖面的腹板厚度。double FlangeWidth
:获取或设置该剖面的翼缘宽度。double LipHeight
:获取或设置该剖面的唇高度。double LipLength
:获取或设置该剖面的唇长度。double RootRadius
:获取或设置该剖面的根部半径。double TipRadius
:获取或设置该剖面的顶部半径。StructuralSectionSigmaProfileWithLips(double overallHeight, double webThickness, double flangeWidth, double lipHeight, double lipLength, double rootRadius, double tipRadius)
: 根据给定参数创建一个具有Sigma型剖面和唇的截面。以下代码演示如何创建一个具有Sigma型剖面和唇的结构截面:
StructuralSectionSigmaProfileWithLips section = new StructuralSectionSigmaProfileWithLips(
overallHeight: 350.0,
webThickness: 15.0,
flangeWidth: 200.0,
lipHeight: 20.0,
lipLength: 30.0,
rootRadius: 5.0,
tipRadius: 5.0
);