PathFigureCollection.IndexOf(PathFigure) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在整个集合中搜索指定的 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。
返回
如果在 PathFigureCollection 中找到,则为 value
的索引;否则为 -1。
实现
注解
从第一个开始搜索集合,最后PathFigure一个PathFigure结束。
此方法执行线性搜索;因此,平均执行时间与值 Count成正比。 也就是说,此方法是 O (n) 操作,其中 n 等于 Count。