如何快速判断到数据窗口对象属性允许有表达式
如:column.visible......
------解决方案--------------------
string ss
ss = dw.Describe("jmbz.visible")
IF not (ss = "!" OR ss = "?") THEN
--对象属性允许有表达式
end if
------解决方案--------------------
- C/C++ code
string lsls = dw_1.describe("col.属性")if dw_1.modify("col.属性 = '1~t2'") = '' then //可以写表达式 dw_1.modify("col.属性='" + ls + "'") //还原原属性end if