Skip to main content
A newer version of this page is available. .

ItemsCollectionChangedEventArgs.NewStartingIndex Property

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

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v19.1.dll

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