public method O2GMessagesTable.RowChanged
Brief
The event is fired when a row is changed.
Details
This event could be used instead of
IO2GTableListener
.onChanged
.
Subscribe to this event to catch changing of a row.
In case the update has been received from the server, the parameter contains a new instance of the object. In case the cause of the update is calculated fields, the instance of the object is equal to the previous call of this method, but calculated fields contain new values.
One can use O2GRow.isCellChanged
to find out if fields have been changed.
RowChanged event [hide]
tradesTable.RowChanged += new EventHandler<RowEventArgs>(tradesTable_RowChanged); //... tradesTable_RowChanged(object sender, RowEventArgs e) { string sRowID = e.RowID; O2GRow row = e.RowData; //... }
Declared in O2GTable