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.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class DataGridSearchProbe : Object
Constructors
DataGridSearchProbe()
Declaration
protected DataGridSearchProbe()
Properties
Item
Gets the item associated with the search-match.
Declaration
public object Item { get; }
Property Value
System.Object
|
ItemText
Gets the human readable text of the associated item, i.e. the text that is displayed in the RadDataGrid.
Declaration
public string ItemText { get; }
Property Value
System.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
public List<DataGridSearchMatch> Matches { get; }
Property Value
System.Collections.Generic.List<DataGridSearchMatch>
|
SearchTerms
Gets the search terms that should be searched for.
Declaration
public IList<string> SearchTerms { get; }
Property Value
System.Collections.Generic.IList<System.String>
|
SearchTermsLogicalOperator
Gets or sets the logical operator that is used when more than one search term is searched for.
Declaration
public LogicalOperator SearchTermsLogicalOperator { get; }
Property Value
LogicalOperator
|