Equinox Online Help - Language Reference - A to Z
Continue |
|||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Applies to | ![]() |
||||||||||||||
| Syntax | Continue keyword [LabelName] | ||||||||||||||
| Action | [Statement] Jumps to the start of the specified structure or block | ||||||||||||||
| Scope | Usable anywhere | ||||||||||||||
| Notes | This statement can be used to pass control to the start of a block or structure, from inside that structure. Keyword specifies the block/ structure and may be one of the following:
The optional argument, LabelName, is only used with the Block keyword. It is used to specify the block's name. |
||||||||||||||
| Category | Flow Control | ||||||||||||||
| See Also | Block_EndBlock, BreakPressed, Continue, Execute, EnableInput, Exit, For...Next, Goto, If_Then, Repeat_Until, Return, Sleep, Subtable, Switch, While_EndWhile | ||||||||||||||
| Example | This example places the value fifteen into the variable i, by adding one until it reaches five and then adding ten. number i |
||||||||||||||
