InterfaceIFilteringBehavior
Interface
Provides methods for filtering behavior in the AutoCompleteBox control.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
cs-api-definition
public interface IFilteringBehavior
Methods
FindMatchingItems(string, IList, IEnumerable<object>, string, TextSearchMode)
Find matching items using given criteria.
Declaration
cs-api-definition
IEnumerable<object> FindMatchingItems(string searchText, IList items, IEnumerable<object> escapedItems, string textSearchPath, TextSearchMode textSearchMode)
Parameters
searchText
Text for search.
items
The items for search.
escapedItems
Items which will be escaped when searching.
textSearchPath
The path for applying search.
textSearchMode
The text search mode.
Returns
A collection of matching items or an empty collection if no matches are found.