PathFigureCollection.IndexOf(PathFigure) 方法

定义

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

public:
 virtual int IndexOf(System::Windows::Media::PathFigure ^ value);
public int IndexOf (System.Windows.Media.PathFigure value);
abstract member IndexOf : System.Windows.Media.PathFigure -> int
override this.IndexOf : System.Windows.Media.PathFigure -> int
Public Function IndexOf (value As PathFigure) As Integer

参数

value
PathFigure

要在集合中查找的 PathFigure

返回

Int32

如果在 PathFigureCollection 中找到,则为 value 的索引;否则为 -1。

实现

注解

从第一个开始搜索集合,最后PathFigure一个PathFigure结束。

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

适用于

另请参阅