Class FilterPopupShownEventArgs
Represents the class that provides the data for the FilterPopupShown event.
Inheritance
System.Object
FilterPopupShownEventArgs
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class FilterPopupShownEventArgs : EventArgs
Constructors
FilterPopupShownEventArgs(GridColumn, IEnumerable<FilterElement>, DataGridFilterControl)
Initializes a new instance of the FilterPopupShownEventArgs class.
Declaration
public FilterPopupShownEventArgs(GridColumn column, IEnumerable<FilterElement> uniqueDataSource, DataGridFilterControl control)
Parameters
| Type | Name | Description |
|---|---|---|
| GridColumn | column | The column that needs to show the filter pop up. |
| System.Collections.Generic.IEnumerable<FilterElement> | uniqueDataSource | The unique items collection that needs to show on the filter pop up. |
| DataGridFilterControl | control | The DataGridFilterControl which is going to show on the filter pop-up. |
Properties
Column
Gets the column that needs to show the filter pop up.
Declaration
public GridColumn Column { get; }
Property Value
| Type |
|---|
| GridColumn |
Control
Gets the filter control where the filter items are being loaded.
Declaration
public DataGridFilterControl Control { get; }
Property Value
| Type |
|---|
| DataGridFilterControl |
UniqueItems
Gets the collection of unique items for the column.
Declaration
public IEnumerable<FilterElement> UniqueItems { get; }
Property Value
| Type |
|---|
| System.Collections.Generic.IEnumerable<FilterElement> |