FlexGrid for WPF | ComponentOne
C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / GridColumn Class / FilterLoading Event

In This Topic
    FilterLoading Event (GridColumn)
    In This Topic
    Occurs when the filter of a column is being loaded.
    Syntax
    'Declaration
     
    Public Event FilterLoading As EventHandler(Of GridColumnFilterLoadingEventArgs)
    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.

    PropertyDescription
    Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.WPF.Grid.CancelEventArgs)
    Gets a value indicating whether the associated event is cancellable. (Inherited from C1.WPF.Grid.CancelEventArgs)
    Gets the related column.  
    Gets the data filter that will be displayed for column filtering.  
    Gets or sets whether the apply button is shown. If false, the filter will be applied automatically as the UI is changed.  
    Gets or sets whether the clear button is shown.  
    See Also