Typing in program code
You can enter program statements in upper or lower case. Whenever you leave a line that has been changed, the line will be formatted. SPEL+ keywords are case formatted and spaces are inserted around operators and after semicolons.
Consider using mixed case or lower case for variables and function names instead of all CAPs. This will make your code easier to read.
Use indentation for statements within loops. You can enable/disable the auto-indent function in [Setup]-[Preferences]-[Editor]. It also indents lines after If, Else, For, Select, Case, and Do statements.
For i = 1 To 10
Jump P(i)
Jump P0
Next i
In addition to the auto-indent function, you can edit other functions while entering program code.
See details below.