Test if the value is within a range
Member of Floating Point Intrinsic Functions (PRIM_LIBI.IFloatingPointIntrinsics)
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 |
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.
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))
Febuary 18 V14SP2