Class DataGridSearchTextMatchMode
Defines the different search modes of the RadDataGrid, i.e. how text is searched within the texts elements.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public sealed class DataGridSearchTextMatchMode : Enum
Fields
Contains
An item is marked as a search-match as long as the search text is contained anywhere in the text element (cell or other).
Declaration
public const DataGridSearchTextMatchMode Contains
Field Value
DataGridSearchTextMatchMode
|
StartsWith
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.
Declaration
public const DataGridSearchTextMatchMode StartsWith
Field Value
DataGridSearchTextMatchMode
|
value__
Declaration
public int value__
Field Value
System.Int32
|
WholeWord
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.
Declaration
public const DataGridSearchTextMatchMode WholeWord
Field Value
DataGridSearchTextMatchMode
|