New to Telerik UI for WinFormsStart a free 30-day trial

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)
Parameters:targetobjectindexintoperationItemsChangeOperation

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; }

Gets or sets a value specifing the target.

C#
public object Target { get; set; }