10.7.5 IsFalse
IsFalse tests a Boolean variable and returns true if the Boolean is False
Input Parameters
None
Example
#Button.Enabled := #Boolean.IsFalse
This is equivalent to writing
If (#Boolean = False)
#Button.Enabled := True
Else
#Button.Enabled := False
Endif
Ý 10.7 Boolean Intrinsic Functions