'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.
Property | Description |
---|---|
Filter | Gets whether the search results are filtered. |
Highlight | Gets whether the search results are highlighted. This property is obsolete. Use HighlightMode instead. |
HighlightMode | Gets whether how to the search results are highlighted. |
OnlyVisibleColumns | Gets whether to search only in visible columns. |
OnlyVisibleRows | Gets whether to search only in visible rows. |
Text | Gets the words to search. |
See Also