| MatTElemIndexOf Method |
Determines the index of a specific item in the list.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public int IndexOf(
TElem item
)
Public Function IndexOf (
item As TElem
) As Integer
public:
int IndexOf(
TElem item
)
member IndexOf :
item : 'TElem -> int
Parameters
- item
- Type: TElem
The object to locate in the list.
Return Value
Type:
Int32The index of value if found in the list; otherwise, -1.
See Also