Tag identifier Meaning
SLEEP The tag interrupts script execution for the specified period. The interruption time is obtained
from the transferred value multiplied by the time base of 50 ms.
Syntax:
<SLEEP value="Interruption time" />
Example:
Wait time, 1.5 sec.
<SLEEP value="30" />
STOP Interpretation is canceled at this point.
SWITCH The SWITCH instruction describes a multiple choice. A term is evaluated once and com‐
pared with a number of constants. If the expression matches the constants, the instructions
are executed within the CASE instruction.
The DEFAULT instruction is executed when none of the constants match the expression.
Syntax:
<SWITCH>
<CONDITION> Value </CONDITION>
<CASE value="<Constant 1>">
Instructions
…
</CASE>
<CASE value="<Constant 2>">
Instructions
…
</CASE>
<DEFAULT>
Instructions
…
</DEFAULT>
</SWITCH>
Generating user dialogs
1.7 XML identifier
Easy XML
38 Programming Manual, 12/2017, 6FC5397-1DP40-6BA1