Assignment Operator
The Assignment operator can only be used inside a
Variable SFCodeBlock.
The following table describes the operator.
= Assign a value to a variable.
The Assignment operator is used to store a value in a variable.
Examples
$Var1='a'
Define or re-define the $Var1 variable and store the string value a.
$Var1=$Var1 + 'b'
Store the expression result into the $Var1 variable, the result will be string ab.