PathFigureCollection.IndexOf(PathFigure) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches for the specified PathFigure and returns the zero-based index of the first occurrence within the entire collection.
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
Parameters
- value
- PathFigure
The PathFigure to locate in the collection.
Returns
The index of value
if found in the PathFigureCollection; otherwise, -1.
Implements
Remarks
The collection is searched forward starting at the first PathFigure and ending at the last PathFigure.
This method performs a linear search; therefore, the average execution time is proportional to the value of Count. That is, this method is an O(n) operation, where n is equal to Count.