Class QueryRecordMeetsFilterCriteriaEventArgs
Represents the class that provides data about the QueryRecordMeetsFilterCriteria event which occurs when a record is checked whether it meets filter criteria and should appear visible in the tables DisplayElements.
Inheritance
System.Object
QueryRecordMeetsFilterCriteriaEventArgs
Namespace: Syncfusion.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public sealed class QueryRecordMeetsFilterCriteriaEventArgs : SyncfusionHandledEventArgs
Constructors
QueryRecordMeetsFilterCriteriaEventArgs(Record, Boolean)
Initializes the new instance of the QueryRecordMeetsFilterCriteriaEventArgs class with a record and result.
Declaration
public QueryRecordMeetsFilterCriteriaEventArgs(Record record, bool result)
Parameters
| Type | Name | Description |
|---|---|---|
| Record | record | The record to be tested. |
| System.Boolean | result | The default value for the Result. |
Properties
Record
Gets the value of the record to be tested.
Declaration
[TraceProperty(true)]
public Record Record { get; }
Property Value
| Type |
|---|
| Record |
Result
Gets or sets the result. True if record meets criteria; Otherwise False.
Declaration
[TraceProperty(true)]
public bool Result { get; set; }
Property Value
| Type |
|---|
| System.Boolean |