从Python中提取用例的关键字

时间:2016-04-05 15:36:12

标签: enterprise-architect

从Python到win32com,我从Enterprise Architect项目中提取所有用例:

use_cases = EA.GetElementSet("select * from t_object where Object_Type='UseCase'", 2);

通过循环use_cases,我想获得用例的“关键字”。 通过尝试呼叫,例如uc.pdata5我收到属性错误。

如何获得它?

1 个答案:

答案 0 :(得分:1)

PData5是数据库中存储此信息的字段。

但是,如果您通过API获得用例,那么manual

中会记录EA.Element类型的元素

在这种情况下,您需要使用uc.Tag。从手册:

  

标签

     

字符串

     

注意:读/写对应于Enterprise Architect用户界面中的关键字字段。