NOT keyword
Boolean operator. Bit-wise complement.
Syntax
NOT
Example
DIM isValid AS BOOLEAN
isValid = FALSE
isValid = NOT isValid 'Will now hold value TRUE
IF NOT VISIBLE(obj) THEN
'...
END IF
Go back to list of Keywords.