'Declaration Public Event ColumnFilterLoading As EventHandler(Of GridColumnFilterLoadingEventArgs)
public event EventHandler<GridColumnFilterLoadingEventArgs> ColumnFilterLoading
Event Data
The event handler receives an argument of type C1.WPF.Grid.GridColumnFilterLoadingEventArgs containing data related to this event. The following GridColumnFilterLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from C1.WPF.Grid.CancelEventArgs) |
Cancellable | (Inherited from C1.WPF.Grid.CancelEventArgs) |
Column | Gets the related column. |
DataFilter | Gets the data filter that will be displayed for column filtering. |
ShowApplyButton | Gets or sets whether the apply button is shown. If false , the filter will be applied automatically as the UI is changed. |
ShowClearButton | Gets or sets whether the clear button is shown. |
See Also