Sorry, but there are no more tags available to filter with.
  • 05-imodel获取instances

    通过imodel对象的Objects属性可以很方便的得到文件中的已有的imodel业务实例数据,示例代码如下: foreach (Dynamics o in element.Objects) //由element到instance { strInfo += "\nDynamicsName = "; strInfo += o.ToString(); foreach (Property p in o.Class.Properties) { if (!o.ECInstance[p.Name…