Floating Point Intrinsic Functions - IsBetween Method

Test if the value is within a range

Member of Floating Point Intrinsic Functions (PRIM_LIBI.IFloatingPointIntrinsics)

Parameters

Name

Type

Data Type

Description

Result

*Result (Optional)

Boolean

True if the value is within a range

NumberOne

*Input

Float

Lower boundary

NumberTwo

*Input

Float

Upper boundary

Details

IsBetween tests the value of a number and returns true if it is within the limits specified.

A value equal to either of the limits is considering to be within the limits.

Example

In this example, a button is enabled if the value is within the specified bounds.

     #Button.enabled := #Number.IsBetween(1 100) 

This is equivalent to writing

     #Button.enabled := ((#Number >= 1) and (#Number <= 100))

See also

All Component Classes

Technical Reference

  • No labels