Represents event data for the CollectionChanged event.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
C#
public class CollectionChangedEventArgs
Inheritance: objectCollectionChangedEventArgs
Constructors
Initializes a new instance of the CollectionChangedEventArgs class using the target, the index of the item, and the item's change operation.
C#
public CollectionChangedEventArgs(object target, int index, ItemsChangeOperation operation)
Properties
Gets or sets a value indicating the index in the collection of the changed item.
C#
public int Index { get; set; }
Gets or sets a value indicating the items chnage operation.
C#
public ItemsChangeOperation Operation { get; set; }