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

In This Topic
    CurrentChanged Event (C1DataViewSet)
    In This Topic
    Occurs when values of the current C1ViewRow belonging to the specified C1DataView have been changed, either because another row becomes the current one or because values of the current row have 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 event is triggered when one of the following occurs:

    The reason for triggering this event can be determined via the C1ViewListChangedEventHandler.Reason property.

    This event is useful if you need to provide a custom processing of current row changing independently of the reason of this change.

    See Also