Class
DataGridSearchMatch

Contains information about search-math within the text elements of a RadDataGrid.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataGridSearchMatch

Inheritance: objectDataGridSearchMatch

Constructors

DataGridSearchMatch()

Initializes a new instance of the class.

Declaration

cs-api-definition
public DataGridSearchMatch()

DataGridSearchMatch(int, int)

Initializes a new instance of the class.

Declaration

cs-api-definition
public DataGridSearchMatch(int textMatchStartIndex, int textMatchLength)

Parameters

textMatchStartIndex

int

textMatchLength

int

DataGridSearchMatch(int, int, DataGridColumn)

Initializes a new instance of the class.

Declaration

cs-api-definition
public DataGridSearchMatch(int textMatchStartIndex, int textMatchLength, DataGridColumn column)

Parameters

textMatchStartIndex

int

textMatchLength

int

column

DataGridColumn

Properties

Column

Gets the corresponding column, if there is one.

Declaration

cs-api-definition
public DataGridColumn Column { get; }

Property Value

DataGridColumn

TextMatchLength

Gets the length search-match within the text.

Declaration

cs-api-definition
public int TextMatchLength { get; }

Property Value

int

TextMatchStartIndex

Gets the start index of the search-match within the text.

Declaration

cs-api-definition
public int TextMatchStartIndex { get; }

Property Value

int