WPF

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

    Show / Hide Table of Contents

    Class GridFilterEventArgs

    Provides data for FilterChanging and FilterChanged events.

    Inheritance
    System.Object
    System.EventArgs
    GridEventArgs
    GridHandledEventArgs
    GridFilterEventArgs
    Inherited Members
    GridHandledEventArgs.Handled
    GridEventArgs.OriginalSender
    System.EventArgs.Empty
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.UI.Xaml.Grid
    Assembly: Syncfusion.SfGrid.WPF.dll
    Syntax
    public class GridFilterEventArgs : GridHandledEventArgs

    Constructors

    GridFilterEventArgs(GridColumn, List<FilterPredicate>, Object)

    Initializes a new instance of GridFilterEventArgs class.

    Declaration
    public GridFilterEventArgs(GridColumn column, List<FilterPredicate> filterpredicates, object originalSource)
    Parameters
    Type Name Description
    GridColumn column

    The column related to the filter operation.

    System.Collections.Generic.List<FilterPredicate> filterpredicates

    The list of filter predicates collection.

    System.Object originalSource

    The source of the event.

    Properties

    Column

    Gets the GridColumn related to the filter operation.

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

    A GridColumn that represents the column that is being filtered.

    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 Description
    System.Collections.Generic.List<FilterPredicate>

    The list of FilterPredicate collection.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved