C1.C1DataExtender.2 Assembly > C1.C1DataExtender Namespace > C1DataViewSet Class : ColumnChanged Event |
'Declaration Public Event ColumnChanged As C1ViewColumnChangeEventHandler
public event C1ViewColumnChangeEventHandler ColumnChanged
The event handler receives an argument of type C1ViewColumnChangeEventArgs containing data related to this event. The following C1ViewColumnChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the C1ViewColumn which value is being changed. |
NewValue | Gets or sets a new proposed value for the C1ViewColumn which is being changed. |
OldValue | Gets an old column value. |
Row | Gets the C1ViewRow in which C1ViewColumn is being changed. |
Note that this event is thrown only when change of a value is being made via C1ViewRow object, it's not triggered when changing is performing directly in DataRow object on which C1ViewRow is based.