New to Telerik UI for .NET MAUIStart a free 30-day trial

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:

C#
public class DataGridSearchResultsItem

Inheritance: objectDataGridSearchResultsItem

Constructors

Initializes a new instance of the class.

C#
public DataGridSearchResultsItem(object item)
Parameters:itemobject

The corresponding business item.

Fields

Gets or sets the first search-match.

C#
public DataGridSearchMatch FirstMatch

Gets the item associated with the search-match.

C#
public readonly object Item

Gets or sets a collection of search matches. If only one search-match is found, keep this property null, and use FirstMatch.

C#
public List<DataGridSearchMatch> Matches