Click or drag to resize
DigitalRuneCollectionChangedEventArgsT Class
Provides data for the CollectionChanged event.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    DigitalRune.CollectionsCollectionChangedEventArgsT

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public sealed class CollectionChangedEventArgs<T> : EventArgs, 
	IRecyclable

Type Parameters

T
The type of elements in the collection.

The CollectionChangedEventArgsT type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCreate
Creates an instance of the CollectionChangedEventArgsT class. (This method reuses a previously recycled instance or allocates a new instance if necessary.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodRecycle
Recycles this instance of the CollectionChangedEventArgsT class.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyAction
Gets or sets the action that caused the event.
Public propertyNewItems
Gets the new items that were involved in the change.
Public propertyNewItemsIndex
Gets or sets the index of the first new item.
Public propertyOldItems
Gets the items affected by a replace, remove or move action.
Public propertyOldItemsIndex
Gets or sets the index where the first old item was placed in the collection.
Top
See Also