NOT operator
Synopsis
This operator
performs a logical NOT operation.
Variations
NOT Bool
Performs a logical NOT
operation.
Details |
Examples |
Details and examples
Parameters
Bool
Specifies a boolean value.
Supported types: Boolean.
Returns
Examples
1. |
The following example returns False.
NOT
True
|
2. |
The following example returns True.
NOT
False
|