public method O2GOrdersTable.RowDeleted

Brief

The event is fired when a row is deleted.

Details

This event could be used instead of IO2GTableListener.onDeleted. Subscribe to this event to catch deletion of a row.

RowDeleted event [hide]

 tradesTable.RowDeleted += new EventHandler<RowEventArgs>(tradesTable_RowDeleted);
 //...
 
 static void tradesTable_RowDeleted(object sender, RowEventArgs e)
 {
     string sRowID = e.RowID;
     O2GRow row = e.RowData;
     //...
 }

Declared in O2GTable

back