Previous Topic: Command AbbreviationsNext Topic: Default Values


Continuation

The code syntax or code fragment definitions can continue from one line to the next line. The following examples describe code continuation:

Example: 1

A | B C | D

This code is equivalent to the following code:

A
| B C
| D

Example: 2

{choice1 | choice2 | choice99}

This code is equivalent to the following code:

{ choice1
| choice2
| choice99 }