ItemsCollectionChangedEventArgs.NewStartingIndex Property
Indicates a new index of a modified item in the collection.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Property Value
Type | Description |
---|---|
Int32 | An integer that is the new starting index. |
Remarks
Depending on the ItemsCollectionChangedEventArgs.Action property, the NewStartingIndex property returns the following values:
- NotifyCollectionChangedAction.Remove - null;
- NotifyCollectionChangedAction.Replace - an index of a substituted item;
- NotifyCollectionChangedAction.Move - a new mode item index;
- NotifyCollectionChangedAction.Add - an added item index.
See Also