In an UltraGridRow, if you programmatically assign something to cell.text (i.e. MyRow.cells(0).text = "ABC"), when will the corresponding cell.value (MyRow.cells(0).value) get updated to have the "ABC" value?
Hello Ron,
Thank you for contacting Infragistics!
The Cell.Text is the text/formatted representation of the value and updating the text is not expected to update the value. Instead you will want to set the Cell.Value which will then update the Cell.Text as needed.