Class ComboBoxFilteringBehavior
Represents a filtering behavior for RadComboBox.
Inheritance
System.Object
ComboBoxFilteringBehavior
Namespace: Telerik.Maui.Controls.ComboBox
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ComboBoxFilteringBehavior : Object
Constructors
ComboBoxFilteringBehavior()
Declaration
public ComboBoxFilteringBehavior()
Methods
FilterItems(String, SearchMode, String, IEnumerable)
Filter method called by RadComboBox in order to get FilteredItems.
Declaration
public virtual IList<object> FilterItems(string searchText, SearchMode searchMode, string searchTextPath, IEnumerable source)
Parameters
System.String
searchText
Current Text of RadComboBox |
SearchMode
searchMode
Current SearchMode of RadComboBox. |
System.String
searchTextPath
Current SearchTextPath of RadComboBox |
System.Collections.IEnumerable
source
Current ItemsSource of RadComboBox |
Returns
System.Collections.Generic.IList<System.Object>
|