Store old Cell Value

Hi,

I have to write a log file with the the old values.

Is it possible to save the value of a cell before editing it?
In the OnCellValidate- and OnCanEditCell-Event is already the new value.

Or is there something like grid.OldCells[ARow, ACol]?

Thank you and regards.

In the event OnCellValidate, the public property grid.OriginalCellValue holds the value of the cell before editing while the Value parameter returns the new value.

Works perfect, thank you :-)