cancel
Showing results for 
Search instead for 
Did you mean: 

Use of GetLineData Method

Former Member
0 Kudos

Hi,

I am trying to update a single row in a matrix having no. of rows. Will it be compulsory for me now to use 'oMatrix.FlushtoDatasource()'? Can't i use 'oMatrix.GetLineData()'as i need to pick the latest entries of a single row only. oMatrix is binded to dbdatasource only, no userdatasource used.

HK

Accepted Solutions (1)

Accepted Solutions (1)

rasmuswulff_jensen
Active Contributor
0 Kudos

Yes you can use GetLineData(). Should be something like this:...


matrix.GetLineData(pVal.Row);

//Set datasource values (For userdatasource it is its value-property and for dbdatasources its dbds.SetValue("field",dbds.Offset,"newvalue"))

matrix.SetLineData(pVal.Row);

/Rasmus

Answers (0)