我在datawindow中有一个单选按钮,我想使用代码更改显示值,具体取决于我将单击的命令按钮。可能吗?我可以用什么功能?提前致谢。
答案 0 :(得分:3)
以下是一些代码:
string ls
dw_1.insertrow(0)
dw_1.setredraw(FALSE)
// get the current values
ls = dw_1.describe("blue_1.values")
//ls is 'Red~tR/Blue~tB/Orange~tO'
// change the values
ls = dw_1.modify("blue_1.values = 'Green~tG/Teal~tT/Brown~tB'")
dw_1.setredraw(TRUE)
此示例中的radiobutton列是" blue_1"。