ComponentOne DataGrid for WPF and Silverlight
FilterLoading Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : FilterLoading Event
Occurs before the filter of a column is loaded allowing to change the filter that will be displayed to the user.
Syntax
'Declaration
 
Public Event FilterLoading As System.EventHandler(Of DataGridColumnEditableValueEventArgs(Of IDataGridFilter))
public event System.EventHandler<DataGridColumnEditableValueEventArgs<IDataGridFilter>> FilterLoading
Event Data

The event handler receives an argument of type DataGridColumnEditableValueEventArgs<T> containing data related to this event. The following DataGridColumnEditableValueEventArgs<T> properties provide information specific to this event.

PropertyDescription
Gets the column. (Inherited from C1.WPF.DataGrid.DataGridColumnEventArgs)
Gets or sets the value associated with the column.  
See Also