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

In This Topic
    FilterRow Event (C1DataView)
    In This Topic
    Allows to filter out C1DataView rows on a client in code.
    Syntax
    'Declaration
     
    Public Event FilterRow As C1ViewFilterRowEventHandler
    public event C1ViewFilterRowEventHandler FilterRow
    Event Data

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

    PropertyDescription
    Allows to accept row (true) or filter it out (false).  
    Gets a row whose filter conditions are being checked.  
    Remarks
    This is the same event as C1DataViewSet.FilterRow, see C1DataViewSet.FilterRow event description for details on this event.

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

    See Also