Class DataGridSearchMatch
Contains information about search-math within the text elements of a RadDataGrid.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridSearchMatch : Object
Constructors
DataGridSearchMatch()
Initializes a new instance of the class.
Declaration
public DataGridSearchMatch()
DataGridSearchMatch(Int32, Int32)
Initializes a new instance of the class.
Declaration
public DataGridSearchMatch(int textMatchStartIndex, int textMatchLength)
Parameters
System.Int32
textMatchStartIndex
|
System.Int32
textMatchLength
|
DataGridSearchMatch(Int32, Int32, DataGridColumn)
Initializes a new instance of the class.
Declaration
public DataGridSearchMatch(int textMatchStartIndex, int textMatchLength, DataGridColumn column)
Parameters
System.Int32
textMatchStartIndex
|
System.Int32
textMatchLength
|
DataGridColumn
column
|
Properties
Column
Gets the corresponding column, if there is one.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
TextMatchLength
Gets the length search-match within the text.
Declaration
public int TextMatchLength { get; }
Property Value
System.Int32
|
TextMatchStartIndex
Gets the start index of the search-match within the text.
Declaration
public int TextMatchStartIndex { get; }
Property Value
System.Int32
|