'Declaration
Public Event Filtering As EventHandler(Of AutoCompleteFilteringEventArgs)
'Usage
Dim instance As C1AutoComplete Dim handler As EventHandler(Of AutoCompleteFilteringEventArgs) AddHandler instance.Filtering, handler
public event EventHandler<AutoCompleteFilteringEventArgs> Filtering
Event Data
The event handler receives an argument of type AutoCompleteFilteringEventArgs containing data related to this event. The following AutoCompleteFilteringEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the default filtering of the autocomplete. |
FilterString | Gets or sets the FilterString of the autocomplete. |
See Also