IDXObservableCollection.ItemsAdding Event
Occurs before new items are added to the collection.
Namespace: DevExpress.Maui.Mvvm
Assembly: DevExpress.Maui.Mvvm.dll
NuGet Package: DevExpress.Maui.Mvvm
Declaration
event DXEventHandler<IDXObservableCollectionChangedEventArgs> ItemsAdding
Event Data
The ItemsAdding 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