'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.
Property | Description |
---|---|
AutoFilterValues | Gets a collection of auto-filter values. |
CollectionChangedEventArgs | Gets the NotifyCollectionChangedEventArgs object received when NotifyCollectionChanged is raised. |
DetailDescription | Gets the detail description to which the AutoFilterValues collection belongs. |
ItemProperty | 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