DataRowChangedEvent

Overview

The DataRowChangedEvent event is fired when a structure of the table has changed, i.e. columns were added or removed.

Use DataTable.addTableDataChangedListener to subscribe to the event notifications or DataTable.removeTableDataChangedListener to unsubscribe from them.

Location


Properties


Change

 

property Change: DataRowAction read;

 

DataRowAction Change { __get; }

Row

 

property Row: DataRow read;

 

DataRow Row { __get; }

Instance Methods


constructor

Creates a new event object with the given sender, affected row and and the action on the row.

 

constructor(aSender: Object; aRow: DataRow; aChange: DataRowAction)

 

DataRowChangedEvent(Object aSender, DataRow aRow, DataRowAction aChange)

Parameters:

  • aSender: the sender of the event.
  • aRow: the row whose change has caoused the event.
  • aChange: the type of the row's change.