|
|
|
|
- Decimal separator
- Precision of the reals
Abs (Function) In french: Abs Returns the absolute value: - of a numeric value,
- of a numeric expression (integer or real).
// Retrieve the absolute value ResAbsoluteValue = Abs(-16.23) // Returns 16.23 ResAbsoluteValue = Abs(4.51 + 16.23) // Returns 20.74
New in version 28
// Retrieve the absolute value ResAbsoluteValue is Duration = Abs(5 min) // Returns 0000500000 ResAbsoluteValue = Abs(-15 min) // Returns 0001500000
Syntax
<Result> = Abs(<Handled value>)
<Result>: Integer, real or duration Sought absolute value. <Handled value>: Numeric expression, integer, real or duration Value to handle: - Numeric expression,
- Numeric value,
Remarks Decimal separator The decimal separator for the real numbers is the one defined in the control panel of Windows. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|