Data for Silverlight
ColumnChanged Event

C1.Silverlight.Data Namespace > DataTable Class : ColumnChanged Event
Occurs after a value has been changed for the specified DataColumn in a DataRow.
Syntax
'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.

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