Action group: Base actions
This action is intended to interrupt the current iteration of the loop/branching and exit the loop/branching. Actions in the loop set after the "Break the loop" action will not be completed.
None.
Must be used inside the loop, otherwise the System will display the warning "The Break the loop action is outside the loop".
There are variables of type "Collection" and "Number" containing the value "(1988, 8, 2, 4)" and "2" respectively.
The loop must be terminated until the value of the numeric variable is equal to the value of one of the elements of the collection (the value "2").
Open the "Base actions" action group. Place the loop "Foreach" action in the Studio workspace. In the loop "Foreach" action, select the previously created variable of the "Collection" type in the "Collection" parameter.
Open the "Operators" action group. Place inside the loop "For Each"" action the "Equal to" action. In the parameters of the "Equal to" action, specify the parameters "First operand" and "Second operand". In the "First operand" parameter, select the loop iteration value "For each.Object". In the "Second operand" parameter, select the previously created variable "Numeric_variable2".
(see the description of the action "For each").
The algorithm went through the loop and was broken after setting the variable to "2".