ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / C1DataViewSet Class / ColumnChanged Event

In This Topic
    ColumnChanged Event (C1DataViewSet)
    In This Topic
    Occurs after a value has been changed for the specified C1ViewColumn in a C1ViewRow.
    Syntax
    'Declaration
     
    Public Event ColumnChanged As C1ViewColumnChangeEventHandler
    public event C1ViewColumnChangeEventHandler ColumnChanged
    Event Data

    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.

    PropertyDescription
    Gets the C1ViewColumn which value is being changed.  
    Gets or sets a new proposed value for the C1ViewColumn which is being changed.  
    Gets an old column value.  
    Gets the C1ViewRow in which C1ViewColumn is being changed.  
    Remarks
    This event is triggered after new proposed value for a C1ViewColumn of a C1ViewRow has been actually stored in a row.

    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.

    See Also