Class
DataGridSearchResultsItem

A class that contains information about the search results and corresponding matches in a RadDataGrid.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataGridSearchResultsItem

Inheritance: objectDataGridSearchResultsItem

Constructors

DataGridSearchResultsItem(object)

Initializes a new instance of the class.

Declaration

cs-api-definition
public DataGridSearchResultsItem(object item)

Parameters

item

object

The corresponding business item.

Fields

FirstMatch

Gets or sets the first search-match.

Declaration

cs-api-definition
public DataGridSearchMatch FirstMatch

Field Value

DataGridSearchMatch

Item

Gets the item associated with the search-match.

Declaration

cs-api-definition
public readonly object Item

Field Value

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

cs-api-definition
public List<DataGridSearchMatch> Matches

Field Value

List<DataGridSearchMatch>