SearchMode
Defines the search and filtering modes available for matching user input against items in a ComboBox control. These modes determine how the filtering algorithm compares the search text with item values.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public enum SearchMode
Fields
Matches items that contain the specified search text anywhere within the item text, using case-insensitive comparison. This provides broader search results and is useful for general text search scenarios.
Contains = 2
Matches items that contain the specified search text anywhere within the item text, using case-sensitive comparison. This provides precise text matching when exact case sensitivity is required for contains-based searches.
ContainsCaseSensitive = 3
Matches items that start with the specified search text, using case-insensitive comparison. This is the most common filtering mode for autocomplete scenarios.
StartsWith = 0
Matches items that start with the specified search text, using case-sensitive comparison. This provides more precise filtering when exact case matching is required.
StartsWithCaseSensitive = 1