Defines the different search modes of the RadDataGrid, i.e. how text is searched within the texts elements.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum DataGridSearchTextMatchMode
Fields
An item is marked as a search-match as long as the search text is contained anywhere in the text element (cell or other).
C#
Contains = 0
An item is marked as a search-match only if the text of the text element (cell or other) contains a word that starts with the search text.
C#
StartsWith = 1
An item is marked as a search-match only if the text of the text element (cell or other) contains a word that matches the search text.
C#
WholeWord = 2