Name
BitComplement -- complement a value (V2.0)
Synopsis
n = BitComplement(x)
Function
This function inverts all bits in x. x is treated as a 32-bit integer.

Inputs
x
source value
Results
n
inverted value
Example
Print(BinStr(BitComplement(Val("%11110000"))))
The code above inverts the value %11110000 and returns it to you as a 32-bit integer value (%11111111111111111111111100001111)

Show TOC