我需要使用C#获取状态机图的图表对象的属性和操作。但我无法在图表内部或元素本身内部找到这些东西
答案 0 :(得分:2)
要获取属性和操作的详细信息,需要循环遍历元素的属性和方法集合。
属性:
foreach (EA.Attribute att in currentElement.Attributes)
{
}
对于运营:
foreach (EA.Method att in currentElement.Methods)
{
}
请参阅Attributes和Operations了解更多详情