Delegate SfTextBoxExt.SuggestionPredicate<T>
Returns a value based on SuggestionPredicate
Assembly: Syncfusion.SfInput.Wpf.dll
Syntax
public delegate bool SuggestionPredicate<T>(string search, T item);
Parameters
| Type |
Name |
Description |
| System.String |
search |
String type
|
| T |
item |
template type
|
Returns
| Type |
Description |
| System.Boolean |
true if instance is created ; otherwise, false.
|
Type Parameters
| Name |
Description |
| T |
item value
|
Constructors
SuggestionPredicate(Object, IntPtr)
Declaration
public SuggestionPredicate(object object, IntPtr method)
Parameters
| Type |
Name |
Description |
| System.Object |
object |
|
| System.IntPtr |
method |
|
Methods
BeginInvoke(String, T, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(string search, T item, AsyncCallback callback, object object)
Parameters
| Type |
Name |
Description |
| System.String |
search |
|
| T |
item |
|
| System.AsyncCallback |
callback |
|
| System.Object |
object |
|
Returns
EndInvoke(IAsyncResult)
Declaration
public virtual bool EndInvoke(IAsyncResult result)
Parameters
| Type |
Name |
Description |
| System.IAsyncResult |
result |
|
Returns
Invoke(String, T)
Declaration
public virtual bool Invoke(string search, T item)
Parameters
| Type |
Name |
Description |
| System.String |
search |
|
| T |
item |
|
Returns