该类表示斜缘梁截面类型,在Revit中用于结构分析和设计。
Width
: 梁截面宽度,单位为英尺(ft)。Depth
: 梁截面深度,单位为英尺(ft)。FlangeWidth
: 斜缘宽度,单位为英尺(ft)。FlangeSlope
: 斜缘倾斜角度,单位为弧度(radians)。WebThickness
: 网格厚度,单位为英尺(ft)。FlangeThickness
: 斜缘厚度,单位为英尺(ft)。该类没有可用方法。
// 创建一个斜缘梁截面类型
StructuralSectionCSlopedFlange section = new StructuralSectionCSlopedFlange(10, 20, 0.5, Math.PI/6, 0.3, 0.4);
// 将斜缘梁截面类型添加到Revit模型中
FamilySymbol symbol = doc.FamilyCreate.NewFamilySymbol(section);
symbol.Name = "CSlopedFlange Section";
symbol.Activate();