Skip to main content

ItemsCollectionChangedEventArgs.NewItems Property

Gets a list of new items within the collection.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public IList NewItems { get; }

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