menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class QueryFilterTextEventArgs - WindowsForms API Reference | Syncfusion

    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
    System.EventArgs
    QueryFilterTextEventArgs
    Inherited Members
    System.EventArgs.Empty
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    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 - 2025 Syncfusion Inc. All Rights Reserved