获取EA中的元素背景颜色

时间:2015-05-25 08:39:33

标签: c# enterprise-architect

如何使用官方API获取元素的颜色(例如边界)?

我假设它在t_objects中保存在数据库中 - > backcolor,但我找不到Element中的属性/方法来获取它。

1 个答案:

答案 0 :(得分:1)

没有。你需要使用

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
for (UIView * txt in self.view.subviews){
    if ([txt isKindOfClass:[UITextField class]] && [txt isFirstResponder]) {
        [txt resignFirstResponder];
    }
  }
}
  

EA中的着色值具有简单的RGB值,没有透明度。每个红色,蓝色和绿色值的强度可以是0到255. RGB本身由

计算
repository.SQLQuery("SELECT Backcolor, Bordercolor, BoderWidth, Fontcolor FROM t_object WHERE ...")
     

默认着色等于-1。

来自我的Scripting EA书。