Important: The information in this document is obsolete and should not be used for new development.
BitNot
You can use theBitNotfunction to perform theNOTlogical operation on a long word.
FUNCTION BitNot (value: LongInt): LongInt;
value- A long word.
DESCRIPTION
TheBitNotfunction returns a long word that is the result of performing theNOToperation on the long word specified by thevalueparameter. 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 theBitNotfunction, see Figure 3-10 on page 3-17.