NotifyCollectionChangedEventArgs.NewStartingIndex 属性

定义

获取发生更改处的索引。

public:
 property int NewStartingIndex { int get(); };
int NewStartingIndex();
public int NewStartingIndex { get; }
var int32 = notifyCollectionChangedEventArgs.newStartingIndex;
Public ReadOnly Property NewStartingIndex As Integer

属性值

Int32

int

发生更改的索引。

注解

使用 .NET 编程时,此类是隐藏的,开发人员应使用 System.Collections.Specialized.NotifyCollectionChangedEventArgs 类。

NewStartingIndex 将包含以下值,具体取决于在事件数据中报告的 操作

操作
添加 新添加项的索引。
移动 新添加项的索引。 由于 移动 在逻辑上可以被视为虚拟 删除 后跟虚拟 添加,因此此处报告的索引可能已针对虚拟 删除进行调整。
移除 -1
已替换项的索引。
重置 -1

请注意,此值是有符号的。 这将启用 -1 值事例。

适用于

另请参阅