Class CollectionChangedEventArgs
Represents event data for the CollectionChanged event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class CollectionChangedEventArgs
Constructors
CollectionChangedEventArgs(Object, Int32, ItemsChangeOperation)
Initializes a new instance of the CollectionChangedEventArgs class using the target, the index of the item, and the item's change operation.
Declaration
public CollectionChangedEventArgs(object target, int index, ItemsChangeOperation operation)
Parameters
System.Object
target
|
System.Int32
index
|
ItemsChangeOperation
operation
|
Properties
Index
Gets or sets a value indicating the index in the collection of the changed item.
Declaration
public int Index { get; set; }
Property Value
System.Int32
|
Operation
Gets or sets a value indicating the items chnage operation.
Declaration
public ItemsChangeOperation Operation { get; set; }
Property Value
ItemsChangeOperation
|
Target
Gets or sets a value specifing the target.
Declaration
public object Target { get; set; }
Property Value
System.Object
|