Interface IItemSearchControl
Represents the ItemSearch used in the searching behaviors.
Namespace: Telerik.Windows.Controls.Primitives
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IItemSearchControl
Methods
FindItem(Predicate<Object>, IValueRetriever)
Provides the item which is found using a match predicate and value retriever.
Declaration
object FindItem(Predicate<object> match, IValueRetriever valueRetriever)
Parameters
System.Predicate<System.Object>
match
|
IValueRetriever
valueRetriever
|
Returns
System.Object
|
FindItems(Predicate<Object>, IValueRetriever)
Provides the items that are found using a match predicate and value retriever.
Declaration
IEnumerable<IItemSearchResult> FindItems(Predicate<object> match, IValueRetriever valueRetriever)
Parameters
System.Predicate<System.Object>
match
|
IValueRetriever
valueRetriever
|
Returns
System.Collections.Generic.IEnumerable<IItemSearchResult>
|