Branching and Flow Control
break — Break loop
Exits the current loop immediately.
Syntax
XML
<break />
<break level="2" /> <!-- Break out of 2 nested loops -->
continue — Continue loop
Full reference →
Skips the rest of the current iteration and continues with the next one.
Syntax
XML
<continue />
<continue level="2" />
return — Return from function
Exits the current function context.
Syntax
XML
<return />
<return>value</return> <!-- Return with value (implicit set) -->
exit — Terminate execution
Immediately halts the entire iXML execution script.
Syntax
XML
<exit />