Return the index of the first column with a given column name.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public int IndexOfColumn(
	string colName
)
Visual Basic (Declaration)
Public Function IndexOfColumn ( _
	colName As String _
) As Integer
Visual C++
public:
int IndexOfColumn(
	String^ colName
)

Parameters

colName
Type: System..::.String
A column name.

Return Value

The index of the first column with the given column name, or -1 if the column name is not found.

See Also