  | DataFrameIndexOfColumn Method | 
            Return the index of the first column with a given column name.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic int IndexOfColumn(
	string colName
)
Public Function IndexOfColumn ( 
	colName As String
) As Integer
public:
int IndexOfColumn(
	String^ colName
)
member IndexOfColumn : 
        colName : string -> int Parameters
- colName  String
 - A column name.
 
Return Value
Int32The index of the first column with the given column name, or
            
-1 if the column name is not found.
See Also