alexa
menu

WinForms

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

    Show / Hide Table of Contents

    Class FilterChangedEventArgs

    Represents the class that provides data for the FilterChanged event.

    Inheritance
    System.Object
    System.EventArgs
    FilterChangedEventArgs
    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.WinForms.DataGrid.Events
    Assembly: Syncfusion.SfDataGrid.WinForms.dll
    Syntax
    public class FilterChangedEventArgs : EventArgs

    Constructors

    FilterChangedEventArgs(GridColumn, List<FilterPredicate>)

    Initializes a new instance of the FilterChangedEventArgs class.

    Declaration
    public FilterChangedEventArgs(GridColumn column, List<FilterPredicate> filterPredicates)
    Parameters
    Type Name Description
    GridColumn column

    The column thats relates to the filter operation.

    System.Collections.Generic.List<FilterPredicate> filterPredicates

    The list of FilterPredicate that needs to apply for the column.

    Properties

    Column

    Gets the column related to the filter operation.

    Declaration
    public GridColumn Column { get; }
    Property Value
    Type
    GridColumn

    FilterPredicates

    Gets the list of filter predicates that defines a set of criteria to filter the data.

    Declaration
    public List<FilterPredicate> FilterPredicates { get; }
    Property Value
    Type
    System.Collections.Generic.List<FilterPredicate>
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved