New to Telerik UI for WPFStart a free 30-day trial

Represents the ItemSearch used in the searching behaviors.

Definition

Namespace:Telerik.Windows.Controls.Primitives

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public interface IItemSearchControl

Methods

Provides the item which is found using a match predicate and value retriever.

C#
object FindItem(Predicate<object> match, IValueRetriever valueRetriever)
Parameters:matchPredicate<object>valueRetrieverIValueRetrieverReturns:

object

Provides the items that are found using a match predicate and value retriever.

C#
IEnumerable<IItemSearchResult> FindItems(Predicate<object> match, IValueRetriever valueRetriever)
Parameters:matchPredicate<object>valueRetrieverIValueRetrieverReturns:

IEnumerable<IItemSearchResult>