Icon TDataRowEvent

Unit: WebData

TDataRowEvent = procedure (Sender: TObject; Column: TDataColumn)
      of object

Available In: Client and Server Applications

The TDataRowEvent type is used by the TDataSet OnRowChanged event.

The Sender parameter is the TDataSet instance that triggered the event and the Column parameter is the column that was changed, if applicable. If the Column parameter is nil, then the entire row has been changed, as opposed to a single column.
Image