false(
)
The false( function returns false.
Parameters
No parameters.
Description
This function always returns false.
false() ☞ 0
Note: This function is equivalent to:
0
See Also
- and -- returns true if both operands are true.
- between( -- checks to see if a value is between two other values.
- boolstr( -- converts a Boolean value to text, either `"true"` or `"false"`.
- limit( -- checks to see if a value is between a minimum and maximum value. If it is, the value is returned unchanged. If it is below the minimum, the minimum value is returned. If it is above the maximum the maximum value is returned.
- not -- reverses a boolean value.
- not( -- reverses a Boolean value
- notbetween( -- checks to see if a value is *not* between two other values.
- or -- returns true if either operand is true, or false if both are false.
- switch( -- chooses from a list of values.
- true( -- returns true.
- xor -- returns true if one of the two parameters is true, false if neither or both are true.
History
10.0 | No Change | Carried over from Panorama 6.0. |