There is way to change column value through Modify?
There is way to change column value thro开发者_如何学Cugh the Modify function?
Thanks
The only way I know to access the data via a DataWindow expression is through the datawindow.data
property describe, but you have only a read only access to the dw data globally without access to a specific row/column.
I think that you are looking for the SetItem()
method. If you prefer the dotted notation, you can also use the dw.object.data[row, col]
.
精彩评论