Specifies the type of change operation being performed on a collection of RadItem objects.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
C#
public enum ItemsChangeOperation
Fields
Indicates that a number of items were added to the collection via the AddRange method
C#
BatchInsert = 10
Indicates that the items are cleared
C#
Cleared = 7
Indicates that the items will be cleared
C#
Clearing = 6
Indicates that an insert operation is performed.
C#
Inserted = 1
Indicates that an insert operation will commence.
C#
Inserting = 0
Indicates that a remove operation is performed.
C#
Removed = 3
Indicates that a remove operation will commence.
C#
Removing = 2
Indicates that an item is set
C#
Set = 5
Indicates that an item is going to be set
C#
Setting = 4
Indicates that the items are sorted
C#
Sorted = 9
Indicates that the items will be sorted
C#
Sorting = 8