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
- Reference: com.remobjects.dataabstract.jar
- Package: com.remobjects.dataabstract.data
- Ancestry: EventObject | DataRowChangedEvent
Properties
Change
property Change: DataRowAction read;
DataRowAction Change { __get; }
Row
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.