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

In This Topic
    RowChanging Event (C1DataView)
    In This Topic
    Occurs before editing of C1ViewRow will be finished.
    Syntax
    'Declaration
     
    Public Event RowChanging As C1ViewRowChangeEventHandler
    public event C1ViewRowChangeEventHandler RowChanging
    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.RowChanging, see C1DataViewSet.RowChanging event description for details on this event.

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

    See Also