该结构体是Revit API中用于表示结构材料类型的数据类型之一。在Revit中,结构材料类型包括钢、混凝土、木材、铝等材料。
public struct StructuralMaterialType : IEquatable<StructuralMaterialType>
以下示例展示如何获取StructuralMaterialType并使用其中一个属性:
StructuralMaterialType steelType = StructuralMaterialType.Steel;
if (steelType.IsSteel)
{
TaskDialog.Show("Steel Type", "This is a steel type.");
}