Class GridFilterItemsPopulatedEventArgs
Provides data for FilterItemsPopulated event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.UWP.dll
Syntax
public class GridFilterItemsPopulatedEventArgs : GridEventArgs
Constructors
GridFilterItemsPopulatedEventArgs(IEnumerable<FilterElement>, GridColumn, GridFilterControl, Object)
Initializes a new instance of GridFilterItemsPopulatedEventArgs class.
Declaration
public GridFilterItemsPopulatedEventArgs(IEnumerable<FilterElement> itemsSource, GridColumn column, GridFilterControl filterControl, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<FilterElement> | itemsSource | The list of filter element that were loaded in filter control. |
GridColumn | column | The corresponding column related to the event. |
GridFilterControl | filterControl | The corresponding filter control where the filter items are loaded. |
System.Object | originalSource | The source of the event. |
Properties
Column
Gets the GridColumn related to the event.
Declaration
public GridColumn Column { get; }
Property Value
Type | Description |
---|---|
GridColumn | The GridColumn related to the event. |
FilterControl
Gets the GridFilterControl where the filter items are loaded.
Declaration
public GridFilterControl FilterControl { get; }
Property Value
Type | Description |
---|---|
GridFilterControl | The GridFilterControl where the filter items are loaded. |
ItemsSource
Gets or sets the collection of filter element that were loaded as an ItemsSource of filter control.
Declaration
public IEnumerable<FilterElement> ItemsSource { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<FilterElement> | The collection of FilterElement that were loaded in filter control. |