Class
CollectionChangedEventArgs

Represents event data for the CollectionChanged event.

Definition

Namespace:Telerik.WinControls

Assembly:Telerik.WinControls.dll

Syntax:

cs-api-definition
public class CollectionChangedEventArgs

Inheritance: objectCollectionChangedEventArgs

Constructors

CollectionChangedEventArgs(object, int, ItemsChangeOperation)

Initializes a new instance of the CollectionChangedEventArgs class using the target, the index of the item, and the item's change operation.

Declaration

cs-api-definition
public CollectionChangedEventArgs(object target, int index, ItemsChangeOperation operation)

Parameters

target

object

index

int

operation

ItemsChangeOperation

Properties

Index

Gets or sets a value indicating the index in the collection of the changed item.

Declaration

cs-api-definition
public int Index { get; set; }

Property Value

int

Operation

Gets or sets a value indicating the items chnage operation.

Declaration

cs-api-definition
public ItemsChangeOperation Operation { get; set; }

Property Value

ItemsChangeOperation

Target

Gets or sets a value specifing the target.

Declaration

cs-api-definition
public object Target { get; set; }

Property Value

object