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.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
BooleanTrue if the function was successful, otherwise
False.
Exceptions Exception | Condition |
---|
InvalidOperationException | ColumnHeaderVector is not known yet, thus column spacing is not known. Please call Execute first. |
See Also