'Declaration Public Event FilterLoading As EventHandler(Of GridColumnFilterLoadingEventArgs)
public event EventHandler<GridColumnFilterLoadingEventArgs> FilterLoading
Event Data
The event handler receives an argument of type GridColumnFilterLoadingEventArgs containing data related to this event. The following GridColumnFilterLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.WPF.Grid.CancelEventArgs) |
Cancellable | Gets a value indicating whether the associated event is 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