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

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

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    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