public method O2GTradesTable.RowAdded
Brief
The event is fired when a new row appears in the table.
Details
This event could be used instead of
IO2GTableListener.onAdded.
Subscribe to this event to catch adding a new row to the table.
RowAdded event [hide]
tradesTable.RowAdded += new EventHandler<RowEventArgs>(tradesTable_RowAdded);
//...
static void tradesTable_RowAdded(object sender, RowEventArgs e)
{
string sRowID = e.RowID;
O2GRow row = e.RowData;
//...
}
Declared in O2GTable