| Syntax |
|
| Documentation | Returns the logical AND linkage of all parameters:
FALSE by the number 0. The function $and will return 0 if any parameter is not equal to the integer 1. The expression $and{1}{b}{1} will be accepted and will return 1. |
| Examples | |
Calculate the arc cosine of the numeric variable 'number' if and only if it's value is more or equal to -1 and less or equal to 1:
$if {$and{$moreOrEqual{$get{number}}{-1}}{$lessOrEqual{$get{number}}{1}}}
$set{asin}{$asin{number}} } |
|
| Group | Boolean |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 2 |
| Maximum parameters | <unlimited> |