Describes the action that caused a CollectionChanged event.
Definition
Namespace:Telerik.WinControls.Data
Assembly:Telerik.WinControls.dll
Syntax:
C#
public enum NotifyCollectionChangedAction
Fields
One or more items were added to the collection.
C#
Add = 0
The collection has been updated in a batch operation.
C#
Batch = 5
An item in the collection has changed.
C#
ItemChanged = 7
An item in the collection is about to change.
C#
ItemChanging = 6
One or more items were moved within the collection.
C#
Move = 3
One or more items were removed from the collection.
C#
Remove = 1
One or more items were replaced in the collection.
C#
Replace = 2
The content of the collection changed dramatically.
C#
Reset = 4