Interface
IItemSearchControl

Represents the ItemSearch used in the searching behaviors.

Definition

Namespace:Telerik.Windows.Controls.Primitives

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public interface IItemSearchControl

Methods

FindItem(Predicate<object>, IValueRetriever)

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

Declaration

cs-api-definition
object FindItem(Predicate<object> match, IValueRetriever valueRetriever)

Parameters

match

Predicate<object>

valueRetriever

IValueRetriever

Returns

object

FindItems(Predicate<object>, IValueRetriever)

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

Declaration

cs-api-definition
IEnumerable<IItemSearchResult> FindItems(Predicate<object> match, IValueRetriever valueRetriever)

Parameters

match

Predicate<object>

valueRetriever

IValueRetriever

Returns

IEnumerable<IItemSearchResult>