alexa
menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class QueryFilterTextEventArgs

    Represents the class that provides data for the event that occurs when the records are filtered through RecordFilterDescriptor.

    Inheritance
    System.Object
    QueryFilterTextEventArgs
    Namespace: Syncfusion.Grouping
    Assembly: Syncfusion.Grouping.Base.dll
    Syntax
    public class QueryFilterTextEventArgs : EventArgs

    Constructors

    QueryFilterTextEventArgs(FieldDescriptor, String, Record, Boolean)

    Initializes a new instance of the QueryFilterTextEventArgs class.

    Declaration
    public QueryFilterTextEventArgs(FieldDescriptor fieldDescriptor, string text, Record record, bool handled)
    Parameters
    Type Name Description
    FieldDescriptor fieldDescriptor

    The mapping information to a column.

    System.String text

    The record value of the column to be compared.

    Record record
    System.Boolean handled

    A boolean property to handle the event.

    Properties

    FieldDescriptor

    Gets the FieldDescriptor value of the column which is being filtered currently.

    Declaration
    public FieldDescriptor FieldDescriptor { get; }
    Property Value
    Type
    FieldDescriptor

    Handled

    Gets or sets a value indicating whether the event has been handled and no further processing of this event should happen.

    Declaration
    public bool Handled { get; set; }
    Property Value
    Type
    System.Boolean

    Record

    Gets the record which is compared with filter value currently.

    Declaration
    public Record Record { get; }
    Property Value
    Type
    Record

    Text

    Gets or sets a record cell value of column which is being filtered currently.

    Declaration
    public string Text { get; set; }
    Property Value
    Type
    System.String
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved