Important: The information in this document is obsolete and should not be used for new development.
BitOr
You can use theBitOr
function to perform theOR
logical operation on two long words.
FUNCTION BitOr (value1, value2: LongInt): LongInt;
value1
- A long word.
value2
- A long word.
DESCRIPTION
TheBitOr
function returns a long word that is the result of performing theOR
operation on the long words specified by thevalue1
andvalue2
parameters. Each bit in the returned value is set if and only if the corresponding bit is set invalue1
orvalue2
, or in bothvalue1
andvalue2
.SEE ALSO
For an illustration of the result of performing an operation using theBitOr
function, see Figure 3-9 on page 3-16.