Class
DataGridSearchProbe

An instance of this object is used by the searching mechanism of the RadDataGrid when trying to determine the search matches for an item. Use the Matches collection to add any search matches that satisfy your custom logic.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public abstract class DataGridSearchProbe

Inheritance: objectDataGridSearchProbe

Derived Classes: DataGridSearchCellProbe

Constructors

DataGridSearchProbe()

Declaration

cs-api-definition
protected DataGridSearchProbe()

Properties

Item

Gets the item associated with the search-match.

Declaration

cs-api-definition
public object Item { get; }

Property Value

object

ItemText

Gets the human readable text of the associated item, i.e. the text that is displayed in the RadDataGrid.

Declaration

cs-api-definition
public string ItemText { get; }

Property Value

string

Matches

Gets a collection of search matches for the associated item. Use this to add any search matches that satisfy your custom logic.

Declaration

cs-api-definition
public List<DataGridSearchMatch> Matches { get; }

Property Value

List<DataGridSearchMatch>

SearchTerms

Gets the search terms that should be searched for.

Declaration

cs-api-definition
public IList<string> SearchTerms { get; }

Property Value

IList<string>

SearchTermsLogicalOperator

Gets or sets the logical operator that is used when more than one search term is searched for.

Declaration

cs-api-definition
public LogicalOperator SearchTermsLogicalOperator { get; }

Property Value

LogicalOperator