LOBYTE
Retrieves the low-order byte from the given value.
OutputVar := LOBYTE(Value)
Function Example: Byte := LOBYTE(5130)
Parameters
- OutputVar
-
The name of the variable to store the low-order byte.
- Value
-
The value to convert to low-order byte.
Examples
var:=5130 MsgBox % LOBYTE(var)