class RowEventArgs

Parents
System.EventArgs

Brief

The arguments of table events: RowAdded, RowChanged, and RowDeleted.

Details

RowEventArgs is used in events RowAdded, RowChanged, and RowDeleted.

Using RowEventArgs [hide]

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

The type defined in the fxcore2.dll assembly. The namespace is fxcore2.

Public Properties

RowData

The row data.

RowID

The row ID.

Public Constructors

RowEventArgs

Constructor.

back