| Syntax | $multiply{numeric_value_1}{numeric_value_2} ... {numeric_value_n} |
| Documentation | Function $multiply returns the product of all given number.
Parameters:
numeric_value_1 through numeric_value_n, the numeric decimal values to be multiplied.
Returns:
the floating point value of the expression (numeric_value_1 * numeric_value_2 * ... * numeric_value_n)
Throws:
java.lang.NumberFormatException if any of the arguments can not be intepreted as decimal numbers. |
| Examples |
Multiply:
$// The value of the variable product should be 2000
set{product}{$multiply{100}{2}{10}} |
| Group | Math |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 2 |
| Maximum parameters | <unlimited> |