[This is preliminary documentation and is subject to change.]
Occurs when the collection changes. Implements the CollectionChanged event. This event is provided for compatibility with INotifyCollectionChanged interface. ListWithEvents<(Of <(<'T>)>)> provides CollectionChanged event which provides detailed information about what has with the collection.
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)] public event NotifyCollectionChangedEventHandler INotifyCollectionChanged_CollectionChanged |
| Visual Basic |
|---|
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _ Public Event INotifyCollectionChanged_CollectionChanged As NotifyCollectionChangedEventHandler |
| Visual C++ |
|---|
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)] public: virtual event NotifyCollectionChangedEventHandler^ INotifyCollectionChanged_CollectionChanged { void add (NotifyCollectionChangedEventHandler^ value); void remove (NotifyCollectionChangedEventHandler^ value); } |
| F# |
|---|
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>] abstract INotifyCollectionChanged_CollectionChanged : IEvent<NotifyCollectionChangedEventHandler, NotifyCollectionChangedEventArgs> [<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>] override INotifyCollectionChanged_CollectionChanged : IEvent<NotifyCollectionChangedEventHandler, NotifyCollectionChangedEventArgs> |
| JScript |
|---|
|
Implements
INotifyCollectionChanged..::..CollectionChanged
See Also
Version History
1.5.3
- Event introduced