April 2003
Beginner to intermediate
620 pages
21h 48m
English
DataRowChangeEventArgs
This class provides extra information for four
DataTable events:
DataTable.RowChanging,
DataTable.RowChanged,
DataTable.RowDeleting, and
DataTable.RowDeleted. This information consists
of the affected DataRow (Row)
and the action that occurred on the row (Action).
public class DataRowChangeEventArgs : EventArgs { // Public Constructors public DataRowChangeEventArgs(DataRowrow, DataRowActionaction); // Public Instance Properties public DataRowAction Action{get; } public DataRow Row{get; } }
System.Object
→
System.EventArgs
→
DataRowChangeEventArgs
DataRowChangeEventHandler.{BeginInvoke( ), Invoke( )}, DataTable.{OnRowChanged( ), OnRowChanging( ), OnRowDeleted( ), OnRowDeleting( )}
Read now
Unlock full access