Xceed DataGrid for WPF v7.3 Documentation
AutoFilterValuesChanged Event (DataGridCollectionViewBase)


Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > DataGridCollectionViewBase Class : AutoFilterValuesChanged Event

Occurs after the AutoFilterValues of the DataGridItemProperty of a detail level changes.

Syntax
'Declaration
 
Public Event AutoFilterValuesChanged As EventHandler(Of AutoFilterValuesChangedEventArgs)
'Usage
 
Dim instance As DataGridCollectionViewBase
Dim handler As EventHandler(Of AutoFilterValuesChangedEventArgs)
 
AddHandler instance.AutoFilterValuesChanged, handler
public event EventHandler<AutoFilterValuesChangedEventArgs> AutoFilterValuesChanged
Event Data

The event handler receives an argument of type AutoFilterValuesChangedEventArgs containing data related to this event. The following AutoFilterValuesChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets a collection of auto-filter values.  
Gets the NotifyCollectionChangedEventArgs object received when NotifyCollectionChanged is raised.  
Gets the detail description to which the AutoFilterValues collection belongs.  
Gets the DataGridItemPropertyBase object whose filter has been modified.  
Requirements

Target Platforms: Windows 11, Windows, 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also