Product: LABELVIEW, CODESOFT
Version: All Versions
|
not(): Gives the opposite of the logical argument
Example:
not(exact("string","different string")) = 1
not(exact("string","string")) = 0
not(False) = 1 or not(0) = 1
not(True) = 0 or not(1) = 0
not(1+1=2) = 0
|