'Declaration
Public Event FilteredItemsChanged As EventHandler(Of ValueChangedEventArgs(Of IList))
'Usage
Dim instance As AutoCompleteTextBox Dim handler As EventHandler(Of ValueChangedEventArgs(Of IList)) AddHandler instance.FilteredItemsChanged, handler
public event EventHandler<ValueChangedEventArgs<IList>> FilteredItemsChanged
Event Data
The event handler receives an argument of type ValueChangedEventArgs<T> containing data related to this event. The following ValueChangedEventArgs<T> properties provide information specific to this event.
Property | Description |
---|---|
NewValue | Gets the new value, which is the most recent setting. |
OldValue | Gets the old value, which is the one that has just been replaced by the NewValue. |
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