Int16KeyFrameCollection.IndexOf(Int16KeyFrame) 方法

定义

在整个集合中搜索指定的 Int16KeyFrame,并返回第一个匹配项的从零开始的索引。

public:
 int IndexOf(System::Windows::Media::Animation::Int16KeyFrame ^ keyFrame);
public int IndexOf (System.Windows.Media.Animation.Int16KeyFrame keyFrame);
member this.IndexOf : System.Windows.Media.Animation.Int16KeyFrame -> int
Public Function IndexOf (keyFrame As Int16KeyFrame) As Integer

参数

keyFrame
Int16KeyFrame

要在集合中查找的 Int16KeyFrame

返回

如果在整个集合中找到 keyFrame 的第一个匹配项,则为该项的从零开始的索引;否则为 -1

注解

集合从第一个关键帧开始向前搜索,在最后一个关键帧结束。

此方法执行线性搜索;因此,平均执行时间与 Count成正比。 也就是说,此方法是 O (n) 操作,其中 nCount

此方法通过调用 Object.Equals确定相等性。

适用于

另请参阅