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

In This Topic
    CurrentChanged Event (C1DataView)
    In This Topic
    Occurs when row or values of the current C1ViewRow belonging to this C1DataView has been changed.
    Syntax
    'Declaration
     
    Public Event CurrentChanged As C1ViewCurrentChangedEventHandler
    public event C1ViewCurrentChangedEventHandler CurrentChanged
    Event Data

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

    PropertyDescription
    Gets the reason why this event has been triggered.  
    Gets the C1DataView that event occurred in.  
    Remarks
    This is the same event as C1DataViewSet.CurrentChanged, see C1DataViewSet.CurrentChanged event description for details on this event.

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

    See Also