Keyword Reference


False / True

Boolean values for use in logical expressions.

    $var = False
    $var = True

Parameters

None.

Remarks

These keywords should not be used in expressions as AutoIt will not detect this 'misuse' and the results will be unpredictable.

Related

Example


Local $bool = False
If Not $bool = True Then MsgBox(0, "Bool comparison", "OK")