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

Represents a filtering behavior for RadComboBox.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

C#
public class ComboBoxFilteringBehavior

Inheritance: objectComboBoxFilteringBehavior

Constructors

Initializes a new instance of the ComboBoxFilteringBehavior class.

C#
public ComboBoxFilteringBehavior()

Properties

Gets or sets the RadComboBox owner.

C#
protected RadComboBox ComboBox { get; }

Methods

Finds the full match index which will be highlighted.

C#
public virtual int FindFullMatchIndex(ReadOnlyCollection<int> matchIndexes)
Parameters:matchIndexesReadOnlyCollection<int>

The indexes which are filtered.

Returns:

int

The full match index which will be highlighted.

Finds matching indexes using the typed text.

C#
public virtual List<int> FindMatchingIndexes(string text)
Parameters:textstring

Text for search.

Returns:

List<int>

The full match index which will be highlighted.