Statement Codeblock Syntax

The syntax for a statement codeblock is:

{[|<parameters>|];<statement>[;<statement>...]}

Comments:

Opening and closing curly braces ({ }) are required.

If you pass parameters, delimit them with vertical bars (| |).

Place a semicolon (;) in front of each statement.

For example, to execute the QUIT command when a user clicks a pushbutton, type this codeblock in the text box next to the pushbutton's OnClick event:

 {;QUIT}