Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionSigmaProfileWithFold是Revit结构部分的一个类,用于表示带有折叠辊的Sigma型剖面结构截面。
该类有一个构造函数:
public StructuralSectionSigmaProfileWithFold(double totalDepth, double width, double webThickness, double flangeThickness, double foldLocation, double foldLength, double foldDepth, Transform orientation)
参数说明:
totalDepth
- Sigma型剖面的总深度width
- 剖面的宽度webThickness
- 剖面的腹板厚度flangeThickness
- 剖面的翼缘厚度foldLocation
- 折叠点在腹板宽度上的位置foldLength
- 折叠长度foldDepth
- 折叠深度orientation
- 剖面的方向该类有以下属性:
TotalDepth
- Sigma型剖面的总深度Width
- 剖面的宽度WebThickness
- 剖面的腹板厚度FlangeThickness
- 剖面的翼缘厚度FoldLocation
- 折叠点在腹板宽度上的位置FoldLength
- 折叠长度FoldDepth
- 折叠深度Orientation
- 剖面的方向//创建一个Sigma型剖面带折叠
var sigmaProfileWithFold = new StructuralSectionSigmaProfileWithFold(500, 200, 10, 20, 100,
50, 30, Transform.Identity);
//输出剖面的总深度
Debug.Print($"Total Depth: {sigmaProfileWithFold.TotalDepth}");