Important: The information in this document is obsolete and should not be used for new development.
BitNot
You can use theBitNot
function to perform theNOT
logical operation on a long word.
FUNCTION BitNot (value: LongInt): LongInt;
value
- A long word.
DESCRIPTION
TheBitNot
function returns a long word that is the result of performing theNOT
operation on the long word specified by thevalue
parameter. Each bit in the returned value is set if and only if the corresponding bit is not set invalue
.SEE ALSO
For an illustration of the result of performing an operation using theBitNot
function, see Figure 3-10 on page 3-17.