TimelineMarkerCollection.RemoveAt(UInt32) 方法

定义

删除指定索引处的项。

public:
 virtual void RemoveAt(unsigned int index) = IVector<TimelineMarker ^>::RemoveAt;
void RemoveAt(uint32_t const& index);
public void RemoveAt(uint index);
function removeAt(index)
Public Sub RemoveAt (index As UInteger)

参数

index
UInt32

unsigned int

uint32_t

要移除的项的索引位置。

实现

M:Windows.Foundation.Collections.IVector`1.RemoveAt(System.UInt32) M:Windows.Foundation.Collections.IVector`1.RemoveAt(unsigned int) M:Windows.Foundation.Collections.IVector`1.RemoveAt(uint32_t)

注解

TimelineMarkerCollection 的集合 API

TimelineMarkerCollection 是一个有序列表,其中的顺序由集合中包含的每个 TimelineMarker的时间值决定TimelineMarkerCollection 的集合 API 在内部处理添加到集合中的每个新项,并将其添加到索引位置,该索引位置对应于集合中所有 TimelineMarker 项的所有 Time 值的更新顺序。

RemoveAt 将删除指定的索引项,但当集合索引移动剩余 Time 值时,不会删除可能的重复项。 建议不要使用 RemoveAt

适用于