Sets the expression used to evaluate each loop.

Properties

Used in

Macro Description
DoWhile Executes statements while the given expression evaluates to true.
The expression is tested at the end of each loop.
While Executes statements while the given expression evaluates to true.
The expression is tested at the beginning of each loop.

Expand image Example

SXML