ItemsCollectionChangedEventArgs.NewItems Property
Gets a list of new items within the collection.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v25.2.dll
Declaration
Property Value
| Type | Description |
|---|---|
| IList | A IList object that is the new items list. |
Remarks
Depending on the performed action (ItemsCollectionChangedEventArgs.Action), the NewItems property returns the following values:
| Action | NewItems property value |
|---|---|
| NotifyCollectionChangedAction.Add | Item(s) added to the collection. |
| NotifyCollectionChangedAction.Remove | null |
| NotifyCollectionChangedAction.Move | A moved item(s). |
| NotifyCollectionChangedAction.Replace | An item(s) with which the collection item(s) has been replaced. |
See Also