NotifyCollectionChangedAction Enumeration |
Describes the action that caused a System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged event.
Namespace: System.Collections.SpecializedAssembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax public enum NotifyCollectionChangedAction
Members
| Member name | Value | Description |
---|
| Add | 0 |
One or more items were added to the collection.
|
| Remove | 1 |
One or more items were removed from the collection.
|
| Replace | 2 |
One or more items were replaced in the collection.
|
| Move | 3 |
One or more items were moved within the collection.
|
| Reset | 4 |
The content of the collection changed dramatically.
|
See Also