Class DataGridSearchResultsItem
A class that contains information about the search results and corresponding matches in a RadDataGrid.
Inheritance
System.Object
DataGridSearchResultsItem
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridSearchResultsItem : Object
Constructors
DataGridSearchResultsItem(Object)
Initializes a new instance of the class.
Declaration
public DataGridSearchResultsItem(object item)
Parameters
System.Object
item
|
Fields
FirstMatch
Gets or sets the first search-match.
Declaration
public DataGridSearchMatch FirstMatch
Field Value
DataGridSearchMatch
|
Item
Gets the item associated with the search-match.
Declaration
public readonly object Item
Field Value
System.Object
|
Matches
Gets or sets a collection of search matches. If only one search-match is found, keep this property null, and use FirstMatch.
Declaration
public List<DataGridSearchMatch> Matches
Field Value
System.Collections.Generic.List<DataGridSearchMatch>
|