该类表示Revit中的结构截面。它包含了截面的基本属性,包括名称,形状,材料,尺寸和约束。该类还可以包括其他从StructuralSectionBase类继承的属性。
public StructuralSectionGeneralS(string name, string familyName, Material material, StructuralSectionShape shape, StructuralSectionConstraints constraints, StructuralSectionSize size);
name
:截面名称。familyName
:截面族名称。material
:截面材料。shape
:截面形状。constraints
:截面约束。size
:截面尺寸。public string Name { get; }
获取截面名称。
public string FamilyName { get; }
获取截面族名称。
public Material Material { get; }
获取截面材料。
public StructuralSectionShape Shape { get; }
获取截面形状。
public StructuralSectionConstraints Constraints { get; }
获取截面约束。
public StructuralSectionSize Size { get; }
获取截面尺寸。
public override bool Equals(object obj);
判断该截面是否与指定对象相等。
public override int GetHashCode();
获取该截面的哈希值。