Performs an Not test on two boolean values.
Math,BoolNot,<DestVar>,<Vaue>
Argument | Description |
---|---|
DestVar | The variable where the result will be stored. |
Value | The value to operate on. |
None.
[Main]
Title=Math-BoolNot Example
Description=Show usage of the Math,BoolNot Command
Author=Homes32
[Variables]
[Process]
Math,BoolNot,%result1%,True
Math,BoolNot,%result2%,False
// Output Result
Message,"Boolean Not Comparison:#$x[True] Return: %result1%#$x[False] Return: %result2%"