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