从Python到win32com,我从Enterprise Architect项目中提取所有用例:
use_cases = EA.GetElementSet("select * from t_object where Object_Type='UseCase'", 2);
通过循环use_cases
,我想获得用例的“关键字”。
通过尝试呼叫,例如uc.pdata5我收到属性错误。
如何获得它?
答案 0 :(得分:1)
PData5
是数据库中存储此信息的字段。
但是,如果您通过API获得用例,那么manual
中会记录EA.Element
类型的元素
在这种情况下,您需要使用uc.Tag
。从手册:
标签
字符串
注意:读/写对应于Enterprise Architect用户界面中的关键字字段。