You're reading the documentation for a development version. For the latest released version, please have a look at master.

Break Node

Overview

Node used inside of For Loops to terminate the loop’s execution.

Description

Has a single field ‘Condition’, which when evaluates to true, causes the For Loop which the Break Node is in to be broken out of.

../../_images/break_node.png

In this image we see a Break Node which was automatically placed at the end of the sub-flowchart in a Loop Node.

A break node can not be inserted outside of a For Loop.

Function Signature

bool  Break( bool initial_value )

Input

Input

Type

Description

initial_value

bool

column 4

body row 2

Output

Header row, column 1

Header 2

Header 3

Header 4

body row 1, column 1

column 2

column 3

column 4

body row 2

Procedure to use