Tests whether this data frame contains a column of the given name.

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

Syntax

C#
public bool ContainsColumn(
	string colName
)
Visual Basic (Declaration)
Public Function ContainsColumn ( _
	colName As String _
) As Boolean
Visual C++
public:
bool ContainsColumn(
	String^ colName
)

Parameters

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

Return Value

Returns true if the given column name exists; otherwise, false.

See Also