Reputation: 433
There is way to change column value through the Modify function?
Thanks
Upvotes: 3
Views: 3784
Reputation: 11465
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]
.
Upvotes: 3