Raises the CollectionChanged event with the provided event data.
Namespace: FirstFloor.Documents.Annotations.StorageAssembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)
Syntax
| C# |
|---|
protected override void OnCollectionChanged( NotifyCollectionChangedEventArgs e ) |
| Visual Basic |
|---|
Protected Overrides Sub OnCollectionChanged ( _ e As NotifyCollectionChangedEventArgs _ ) |
| Visual C++ |
|---|
protected: virtual void OnCollectionChanged( NotifyCollectionChangedEventArgs^ e ) override |
Parameters
- e
- Type: System.Collections.Specialized..::..NotifyCollectionChangedEventArgs
The event data to report in the event.
Remarks
When overriding this methods to perform custom logic, please ensure to invoke the base implementation. The
base implementation attaches and detaches PropertyChanged event handlers and ensure the overridable OnAnnotationPropertyChanged
is invoked when an annotation property changes.