Skip to main content

ItemsCollectionChangedEventArgs.NewStartingIndex Property

Indicates a new index of a modified item in the collection.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public int NewStartingIndex { get; }

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