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

In This Topic
    RowChanged Event (C1DataView)
    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 is the same event as C1DataViewSet.RowChanged, see C1DataViewSet.RowChanged event description for details on this event.

    Note that this event is triggered on C1DataView first and than on C1DataViewSet.

    See Also