更改单选按钮列中的显示值

Change Display Value in Radio Button Column

我在数据窗口中有一个单选按钮,我想根据要单击的命令按钮使用代码更改显示值。可能吗?我可以使用什么功能?提前致谢。

这是一些代码:

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)

本例中的单选按钮列为"blue_1"。