Skip to main content

Branching and Flow Control

break — Break loop

Full reference →

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

Full reference →

Exits the current function context.

Syntax

XML
<return />
<return>value</return> <!-- Return with value (implicit set) -->

exit — Terminate execution

Full reference →

Immediately halts the entire iXML execution script.

Syntax

XML
<exit />