Autodesk.Revit.DB.Structure.ReleaseType是Revit API中用于表示结构构件释放类型的枚举类型。
通过StructuralFraming.ReleaseType
或StructuralColumn.ReleaseType
属性获取结构构件释放类型。
using Autodesk.Revit.DB;
using Autodesk.Revit.DB.Structure;
Document doc = ...;
ElementId id = ...;
StructuralFraming framing = doc.GetElement(id) as StructuralFraming;
if (framing != null)
{
ReleaseType releaseType = framing.ReleaseType;
// 使用 releaseType
}
StructuralColumn column = doc.GetElement(id) as StructuralColumn;
if (column != null)
{
ReleaseType releaseType = column.ReleaseType;
// 使用 releaseType
}