Data for Silverlight
ColumnChanging Event

C1.Silverlight.Data Namespace > DataTable Class : ColumnChanging Event
Occurs when a value is being changed for the specified DataColumn in a DataRow.
Syntax
'Declaration
 
Public Event ColumnChanging As DataColumnChangeEventHandler
public event DataColumnChangeEventHandler ColumnChanging
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.

PropertyDescription
Gets the DataColumn with a changing value.  
Gets or sets the proposed new value for the column.  
Gets the DataRow of the column with a changing value.  
See Also