Autodesk.Revit.DB.EntryAndSchemeConsistency类是Revit API中的一个类,用于检查和解决数据表输入和方案中构件的一致性问题。
该类没有任何属性。
方法 | 返回类型 | 描述 |
---|---|---|
CheckConsistency() |
void | 检查数据表输入和方案的一致性 |
FixInconsistency() |
void | 解决数据表输入和方案的一致性问题 |
//创建EntryAndSchemeConsistency对象
Autodesk.Revit.DB.EntryAndSchemeConsistency entryAndSchemeConsistency = new Autodesk.Revit.DB.EntryAndSchemeConsistency(document);
try
{
//检查一致性
entryAndSchemeConsistency.CheckConsistency();
//如果有不一致,则解决不一致问题
entryAndSchemeConsistency.FixInconsistency();
}
catch (Exception ex)
{
TaskDialog.Show("错误", ex.Message);
}