Skip to main content

IDXObservableCollection.ItemsRemoved Event

Occurs after new items are removed from the collection.

Namespace: DevExpress.Maui.Mvvm

Assembly: DevExpress.Maui.Mvvm.dll

NuGet Package: DevExpress.Maui.Mvvm

Declaration

event DXEventHandler<IDXObservableCollectionChangedEventArgs> ItemsRemoved

Event Data

The ItemsRemoved event's data class is IDXObservableCollectionChangedEventArgs. The following properties provide information specific to this event:

Property Description
Count Gets the number of modified items.
Index Gets the index of the first changed item.
Items Gets the list of modified items.
See Also