 | DataFrameIndexOf Method |
Returns the index of the first row with a given value in a specified column.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic int IndexOf(
int colIndex,
Object val
)
Public Function IndexOf (
colIndex As Integer,
val As Object
) As Integer
public:
int IndexOf(
int colIndex,
Object^ val
)
member IndexOf :
colIndex : int *
val : Object -> int
Parameters
- colIndex Int32
- A column index.
- val Object
- A value.
Return Value
Int32The index of the first row with a given value in a specified column,
or
-1 if the value is not found.
See Also