Class DataGridSearchStartingEventArgs
Encapsulates data associated with the SearchStarting event.
Inheritance
System.Object
DataGridSearchStartingEventArgs
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridSearchStartingEventArgs : EventArgs
Properties
Cancel
Gets or sets a value that indicates whether to cancel the search.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
SearchTerms
Gets or sets the different search terms that should be searched for.
Declaration
public IList<string> SearchTerms { get; set; }
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; set; }
Property Value
LogicalOperator
|