NotifyCollectionChangedEventArgs.OldItems Property

Definition

Gets the item affected by a Replace or Remove action.

public:
 property IBindableVector ^ OldItems { IBindableVector ^ get(); };
IBindableVector OldItems();
public IList OldItems { get; }
var iBindableVector = notifyCollectionChangedEventArgs.oldItems;
Public ReadOnly Property OldItems As IList

Property Value

The bindable vector of items affected by a Replace or Remove action.

Remarks

When programming with .NET, this class is hidden and developers should use the System.Collections.Specialized.NotifyCollectionChangedEventArgs class.

Applies to

See also