*
From Xojo Documentation
Operator
The * operator is used to multiply two numbers.
Usage
result = expression1 * expression2
Part | Type | Description |
---|---|---|
result | Number | The product of expression1 and expression2. |
expression1 | Number | Any numeric expression. |
expression2 | Number | Any numeric expression. |
Notes
You can use Operator_Multiply to define the * operator for classes.
Sample Code
This example stores the product of two numbers in a variable:
See Also
Operator_Multiply function; Operator precedence.