Autodesk.Revit.DB.Structure.RebarCouplerError
Autodesk.Revit.DB.Structure.RebarCouplerError
是Revit中用于描述钢筋连接器错误的类。
语法
public class RebarCouplerError : RebarError
继承体系
构造函数
构造函数 |
描述 |
RebarCouplerError(RebarCouplerFailureType failureType) |
创建一个新的RebarCouplerError 实例,并设置错误类型。 |
属性
属性 |
描述 |
FailureType |
获取或设置钢筋连接器失败的类型。 |
方法
方法 |
描述 |
Equals(Object) |
确定指定的对象是否等于当前对象。 |
GetHashCode() |
用作默认哈希函数。 |
GetType() |
获取当前实例的 Type。 |
ToString() |
返回表示当前对象的字符串。 |
用法示例
下面的示例演示如何使用RebarCouplerError
类:
RebarCouplerError error = new RebarCouplerError(RebarCouplerFailureType.MismatchedBarSizes);
Console.WriteLine("钢筋连接器错误类型:" + error.FailureType.ToString());
参考文献