DoubleMatrixTryGetColumnName Method

Tries to get the name of the specified column.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public bool TryGetColumnName(
	int columnIndex,
	out string columnName
)

Parameters

columnIndex  Int32
Index of the column whose name has to be retrieved.
columnName  String
The name of the specified column.

Return Value

Boolean
true if a name is successfully found for the specified column; otherwise, false.

Exceptions

ArgumentOutOfRangeExceptioncolumnIndex is less than zero.
-or-
columnIndex is equal to or greater than NumberOfColumns.

See Also