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

In This Topic
    ViewListChanged Event
    In This Topic
    Occurs on any change in rows of the specified C1DataView.
    Syntax
    'Declaration
     
    Public Event ViewListChanged As C1ViewListChangedEventHandler
    public event C1ViewListChangedEventHandler ViewListChanged
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.ListChangedEventArgs)
    (Inherited from System.ComponentModel.ListChangedEventArgs)
    (Inherited from System.ComponentModel.ListChangedEventArgs)
    (Inherited from System.ComponentModel.ListChangedEventArgs)
    Gets the C1DataView in which event occurred.  
    Remarks
    This event is triggered independently of a reason of row changes, whether changes was made via C1ViewRow of base DataRow objects. Note that in the case of composite view, changing of a single DataRow can cause changing of multiple C1ViewRow objects based on that DataRow. In this case event will be thrown for each C1ViewRow affected by this change.

    This event provides event arguments parameter of type C1ViewListChangedEventArgs which is derived from the System.ComponentModel.ListChangedEventArgs class. It adds the single View parameter which references the C1DataView object which row set has been changed.

    See Also