Description | Assign the value of the right operand to the left operand |
Syntax | operand1 = operand2 |
Remarks | The = operator is not a comparison operator. It is an assignment operator. For comparisons of x and y, use the == Operator. |
Example | The following assigns 0 (zero) to the contents of the ("Items") field. FieldAt("/SOURCE/R1/Items")= 0 |