'Declaration Public Event ColumnChanged As System.Data.DataColumnChangeEventHandler
public event System.Data.DataColumnChangeEventHandler ColumnChanged
Event Data
The event handler receives an argument of type System.Data.DataColumnChangeEventArgs containing data related to this event. The following DataColumnChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the System.Data.DataColumn with a changing value. |
ProposedValue | Gets or sets the proposed new value for the column. |
Row | Gets the System.Data.DataRow of the column with a changing value. |
See Also