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