BreakBlk
General Control Statement
The BreakBlk statement exits from the innermost statement block. The statement immediately following the innermost statement block's End statement executes next. If a BreakBlk is executed outside any statement block, ProModel exits the logic completely.
Syntax
BreakBlk
Examples
{
Inc Var1
If Var2 = 10 Then
{
BreakBlk
}
}