Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionIParallelFlange是Revit API中的一个结构类型,用于表示具有I型平行法兰的结构截面。这种结构截面通常用于制作梁、柱或桁架等支撑结构的零件。
Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionIParallelFlange具有以下属性:
Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionIParallelFlange具有以下方法:
以下示例演示如何使用Autodesk.Revit.DB.Structure.StructuralSections.StructuralSectionIParallelFlange创建一个I型梁。
// 创建I型梁的结构截面
StructuralSectionIParallelFlange iSection = new StructuralSectionIParallelFlange(
200, // flangeWidth
350, // webDepth
16.0, // webThickness
20.0, // topFlangeThickness
20.0, // bottomFlangeThickness
0.05, // topFlangeSlope
0.05, // bottomFlangeSlope
8.0); // filletRadius
// 创建I型梁的实例并设置其材质
FamilyInstance beamInst = doc.Create.NewFamilyInstance(
new XYZ(0, 0, 0), // location
iSection, // structural section
new Autodesk.Revit.DB.Material(1), // material
StructuralType.Beam); // structural type