Numeric Data Types

Numeric data types can be signed or unsigned numbers. They can be declared as arrays of up to sixteen dimensions, with maximum sizes of 2 GB (2147483647 bytes, 32 bit). The default data for all numeric data types is zero (0). Numeric data types include:

Dlong and DDWord are 8 byte singed and unsigned integer types only available in ATEasy 5.0.

WChar stands for Wide Character and is a signed integer. WChar is based on the standard character set called Unicode that can represent most characters in any language in the world, plus various symbols (for example, copyright, trademark, etc.).

Floating Point numbers are based on the IEEE (Institute of Electrical and Electronics Engineers) format.

Currency is an 8-byte (64-bit), two's complement integer, scaled by 10,000 to give a fixed-point number with 15 digits to the left of the decimal point and 4 digits to the right. This represents a range of +/-922,337,203,685,477.5807. For example, the value of $123.45 ("**") would be represented by the number 1,234,500 in a 64-bit number. Currency is similar to the OLE standard currency data type. Currency values can be exchanged with Visual Basic programs.