LONG

The LONG function returns a result equal to Expression converted to longword integer type.

Calling Sequence

Result = LONG( Expression[, Offset [, Dim 1 , ..., Dim n ]] )

Arguments

Expression

The expression to be converted to longword integer.

Offset

Offset from beginning of the Expression data area. Specifying this argument allows fields of data extracted from Expression to be treated as longword integer data. See the description in Constants and Variables for details.

D i

When extracting fields of data, the D i arguments specify the dimensions of the result. The dimension parameters can be any scalar expression. Up to eight dimensions can be specified. If no dimension arguments are given, the result is taken to be scalar.

When converting from a string argument, it is possible that the string does not contain a valid longword integer and no conversion is possible. The default action in such cases is to print a warning message and return 0. The ON_IOERROR procedure can be used to establish a statement to be jumped to in case of such errors.

Example

If A contains the floating-point value 32000.0, it can converted to a longword integer and stored in the variable B by entering:

B = LONG(A)

See Also

BYTE , COMPLEX , DCOMPLEX , DOUBLE , FIX , FLOAT , STRING