Home > Process Behavior Procedures and Reference > Process Behavior Reference > Expression Operators
Use these operators to combine functions, attributes, numbers, and members into expression statements:
|
Operator |
Description |
|---|---|
|
+ |
Adds operators, including concatenating (adding) strings together |
|
- |
Subtracts |
|
* |
Multiplies |
|
/ |
Divides |
|
= |
Equals |
|
!= |
Not Equal |
|
! |
Not (Logical negation) |
|
< |
Less than |
|
> |
Greater than |
|
<= |
Less than or equal to |
|
>= |
Greater than or equal to |
|
& |
Both statements must be true to return True (Logical AND) |
|
| |
Either statement can be true to return True (Logical OR) |
|
% |
Returns a remainder after a number is divided by a divisor |
|
( ) |
Delineates arguments and sets order of precedence |
|
[ ] |
Indicates index into an array. See Arrays in iGrafx for more information. |
|
, |
Separates members of a list of arguments |
Operators are evaluated in a specific order; please see Expression Order of Evaluation.
Related Topics