Interface IAutocompleteFilterBehavior
Represents an interface that provides information about a methods for performing filerting in SfAutocomplete control.
Namespace: Syncfusion.Maui.Inputs
Assembly: Syncfusion.Maui.Inputs.dll
Syntax
public interface IAutocompleteFilterBehavior
Methods
GetMatchingItemsAsync(SfAutocomplete, AutocompleteFilterInfo)
Finds matching items using the typed text in Autocomplete.
Declaration
Task<object> GetMatchingItemsAsync(SfAutocomplete source, AutocompleteFilterInfo filterInfo)
Parameters
Type | Name | Description |
---|---|---|
SfAutocomplete | source | The Autocomplete control. |
AutocompleteFilterInfo | filterInfo | Contains details about search text. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Object> | The custom items source based on typed text. |