ComponentOne Xamarin.iOS
Filtering Event


C1.iOS.Input Assembly > C1.iOS.Input Namespace > C1AutoComplete Class : Filtering Event
Event raised when the control is about to apply a filter to the list of items.
Syntax
'Declaration
 
Public Event Filtering As EventHandler(Of AutoCompleteFilteringEventArgs)
'Usage
 
Dim instance As C1AutoComplete
Dim handler As EventHandler(Of AutoCompleteFilteringEventArgs)
 
AddHandler instance.Filtering, handler
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.

PropertyDescription
Gets or sets whether to cancel the default filtering of the autocomplete.  
Gets or sets the FilterString of the autocomplete.  
See Also