Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Boolean Intrinsic Functions - Or Method

Panel
bgColor#2c3c4c

Or 2 Boolean variables

Member of Boolean Intrinsic Functions (PRIM_LIBI.IBooleanIntrinsics)

Parameters

Name

Type

Data Type

Description

Result

*Result (Optional)

Boolean

Result of the Or

With

*Input

Boolean

Variable to Or with the subject

Details

Or checks the value of two Boolean variables. If either is True, the result will be True, otherwise, it will be False.

Example

     #Button.Enabled := #Boolean1.Or(#Boolean2) 

This is equivalent to writing

     If (#Boolean1 *or #Boolean2)
#Button.Enabled := True
Else
#Button.Enabled := False
Endif

See also

All Component Classes

Technical Reference