ComponentOne DataGrid for WPF and Silverlight
FilterOpened Event (DataGridColumnHeaderPresenter)

C1.WPF.DataGrid Namespace > DataGridColumnHeaderPresenter Class : FilterOpened Event
Occurs when the filter control of a column is opened.
Syntax
'Declaration
 
Public Event FilterOpened As System.EventHandler(Of DataGridColumnValueEventArgs(Of IDataGridFilter))
public event System.EventHandler<DataGridColumnValueEventArgs<IDataGridFilter>> FilterOpened
Event Data

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

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