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

    通过imodel对象的Schemas属性,我们可以得到文件已有的所有schemas,示例代码如下: foreach(Schema sch in imodel.Schemas) { strInfo += ("schemaName = " + sch.Name + "\n"); foreach (Class cl in sch.Classes) { strInfo += ("\tclass = " + cl.Name + "\n"); foreach (Property pr in cl…