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

In This Topic
    RowChanged Event (C1DataViewSet)
    In This Topic
    Occurs after editing of C1ViewRow has been successfully finished.
    Syntax
    'Declaration
     
    Public Event RowChanged As C1ViewRowChangeEventHandler
    public event C1ViewRowChangeEventHandler RowChanged
    Event Data

    The event handler receives an argument of type C1ViewRowChangeEventArgs containing data related to this event. The following C1ViewRowChangeEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the type of change occurred on the C1ViewRow.  
    Gets the C1ViewRow that is being changed.  
    Remarks
    This event is triggered after editing of C1ViewRow belonging to a C1DataView contained in this C1DataViewSet has been successfully finished, i.e. the C1ViewRow.EndEdit method has been called for the row when it was in editing state (row is switched to an editing state by call of the C1ViewRow.BeginEdit method).

    Note that this event is not triggered when changes are made directly to DataRow objects on which C1ViewRow is based. To process this case you should use ViewListChanged event.

    See Also