Name

DataColumnChangeEventArgs

Synopsis

Provides an argument containing data for the DataTable.ColumnChanging event. This information includes the affected DataRow (Row), and the DataColumn that is changing (Column), and the new value (ProposedValue).

public class DataColumnChangeEventArgs : EventArgs {

// Public Constructors

   public DataColumnChangeEventArgs(DataRow row, DataColumn column, object value);

// Public Instance Properties

   public DataColumn Column{get; } 

   public object ProposedValue{set; get; } 

   public DataRow Row{get; } 

}

Hierarchy

System.Object System.EventArgs DataColumnChangeEventArgs

Passed To

DataColumnChangeEventHandler.{BeginInvoke( ), Invoke( )}, DataTable.{OnColumnChanged( ), OnColumnChanging( )}

Get ADO.NET in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.