ComponentOne Xamarin Edition
Delay
Controls > Input > AutoComplete > Features > Delay

The AutoComplete control provides instant text suggestions by searching the best possible match for the user input. However, you can change this default behavior and add some time gap between user input and the search. For this, you can use the Delay property and set time delay in milliseconds.

The following code example shows setting time delay in the AutoComplete control.

C#
Copy Code
//Setting the time delay
autoComplete.Delay = TimeSpan.FromMilliseconds(1500);