FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGridBase Class / SearchApplied Event

In This Topic
    SearchApplied Event (C1FlexGridBase)
    In This Topic
    Fires after the search operation. The event fires when using the ApplySearch(String,Boolean,Boolean,Boolean,Boolean) method.
    Syntax
    'Declaration
     
    
    Public Event SearchApplied As EventHandler(Of SearchAppliedEventArgs)
    public event EventHandler<SearchAppliedEventArgs> SearchApplied
    Event Data

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

    PropertyDescription
    Gets whether the search results are filtered.  
    Gets whether the search results are highlighted. This property is obsolete. Use HighlightMode instead.  
    Gets whether how to the search results are highlighted.  
    Gets whether to search only in visible columns.  
    Gets whether to search only in visible rows.  
    Gets the words to search.  
    See Also