Interface IAutoCompleteFilterBehavior
Represents an interface that provides information about a methods for performing filerting in SfAutoComplete control.
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public interface IAutoCompleteFilterBehaviorMethods
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. |