Decimal

See Also: Declaring Variables, Variable Declaration Commands, Struct, Currency, Number

Purpose

Declares one or more Decimal variables.

Syntax

To declare decimal variables

Decimal {identifier} [… {identifier}]

Where

To declare array variables of type Decimal

Decimal{dimension-list} {identifier} […{identifier}]

Where

What It Does

The Decimal command declares Decimal variables, in the range of -9999999999999999.9999999999999999 to 9999999999999999.9999999999999999 (-9,999,999,999,999,999.9999999999999999 to 9,999,999,999,999,999.9999999999999999).

Internally, Decimal is a fixed point variable with up to 32 significant digits - 16 to the left of the decimal point and 16 to the right of the decimal point.

The Decimal type is compatible for storing SQL data of the Decimal or Numeric types.

Multiple variables may be declared on one command line, with their names separated from each other by spaces.

Example

Procedure DoTest

    Decimal decMyVar

 

    Move 10000.999999999999 To decMyVar

End_Procedure

This example declares one variable of type decimal, named decMyVar, and initializes it.

 

Decimal[] decSharePrices

This example declares 1 dynamic array variable, named decSharePrices, containing an undefined number of elements of type Decimal.

Decimal[5] decSharePrices

This example declares 1 static array variable, named decSharePrices, containing 5 of elements of type Decimal.

Decimal[][3] decSharePrices

This example creates a two-dimensional dynamic array variable named decSharePrices, containing an undefined number of elements of type Decimal. Conceptually, this represents a rectangular array with an undefined number of rows, each of 3 columns.

You can declare dynamic multi-dimensional arrays where all dimensions are dynamic; these are called jagged arrays.

 

Notes