Return the not of the variable
Member of Boolean Intrinsic Functions (PRIM_LIBI.IBooleanIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Boolean | Resulting Boolean |
Not returns the opposite value of a Boolean variable. Thus, a True will be returned as a False, and vice versa
#Button.Enabled := #Button.Enabled.Not
This is equivalent to writing
If (#Button.Enabled) #Button.Enabled := False Else #Button.Enabled := True Endif
Febuary 18 V14SP2