Click or drag to resize

DataTableToMatrixConverterTryGetColumnSpacing Method

Tries to get the uniform column spacing value, or, if the column header vector is not uniformly spaced, false is returned along with a diagnostic message.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool TryGetColumnSpacing(
	out double? columnSpacing,
	out string?? errorMessage
)

Parameters

columnSpacing  Double
If the function is successful, contains the column spacing value.
errorMessage  String
If the function is not successful, contains a diagnostic error message.

Return Value

Boolean
True if the function was successful, otherwise False.
Exceptions
ExceptionCondition
InvalidOperationExceptionColumnHeaderVector is not known yet, thus column spacing is not known. Please call Execute first.
See Also