Enform Plus Reference Manual

Statements
Enform Plus Reference Manual422684-001
4-42
Redefining Option Variables
the following example, the user variable u-var is defined as numeric by the DECLARE
statement and set to the value of 99 by the SET statement:
DECLARE u-var INTERNAL I2;
SET u-var TO 99;
The SET statement can initialize a user table. An unsigned numeric integer subscript
must be used. In the following example, the third element of the months table is set to
MARCH:
DECLARE months [12] INTERNAL A10;
SET months [3] TO "MARCH";
Redefining Option Variables
Use the SET statement to redefine option variables. Several option variables exist, each
with default values assigned by Enform Plus. See Option Variable Clauses on page 5-48
for information about valid values for the option variables.