LOW

Top  Previous  Next

Action

Retrieves the least significant byte of a variable.

 

 

Syntax

var = LOW( s )

 

 

Remarks

Var

The variable that is assigned with the LSB of var S.

S

The source variable to get the LSB from.

 

 

See also

HIGH , LOWW , HIGHW

 

 

Example

Dim I As Integer , Z As Byte

I = &H1001

Z = Low(I)  ' is 1