这样写错在那里??
integer li_maxcol ,i
string ls_column
li_maxcol = integer(this.o b j e c t.DataWindow.Column.Count)
for i = 1 to li_maxcol
if this.Describe("#"+string(i)+".Visible") = '1' then
ls_column = this.Describe("#"+string(i)+".Name") //列名
this.Modify(ls_column + ".color='" + "0~tif(currentRow()=getrow(),16777215,8388608)'")
this.Modify(ls_column + ".background.color=" + "536870912~tif(currentRow() = getrow(),8388608,16777215)")
end if
next
当鼠标移动到该行时候
我想改变该列的 属性 Font 中 .background.color ,但不知道怎么不行的??