Purpose |
Extract the least significant (low-order) portion
of an
|
Syntax |
result = LO(DataType, value) |
Remarks |
The value returned by LO is unsigned if DataType is BYTE, WORD, or DWORD, and signed if DataType is INTEGER or LONG. value may be up to twice the size of the data type specified by DataType. In the following example, n may be up to a 16-bit value (twice the size of a BYTE): b = LO(BYTE,n) |
Restrictions |
LO replaces LOBYT, LOWRD, and LOINT. Note that those functions are no longer supported, so update your code to use the new syntax. |
See also |