MODIFY LINE <n> [INDEX
<idx>] [OF CURRENT PAGE|OF PAGE <p>]
|CURRENT LINE
LINE FORMAT <option1> <option2>�
FIELD VALUE <f1> [FROM <g1>] <f2> [FROM <g2>]�
FIELD FORMAT <f1> <options1> <f2> <options2>.
Changes either line <n> on
the current or specified list (or page), or the last line to be chosen. The
exact nature of the change is specified in the additions
MODIFY SCREEN
Changes the SCREEN table.
Syntax
MODIFY SCREEN�
Like changing an internal
table. The system table SCREEN contains the names and attributes of all of the
fields on the current screen.
MODULE
Introduces a dialog
module.
Syntax
MODULE <mod> OUTPUT
|[INPUT].
Introduces the dialog
module <mod>. The OUTPUT and INPUT additions designate the module as a PBO or
PAI module respectively. Each dialog module ends with ENDMODULE.
MOVE
Assigns values.
Syntax
MOVE <f1> TO <f2>.
Assigns the contents of
the data object <f1> to the variable <f2>, with automatic type conversion if
necessary. Equivalent to <f2> = <f1>.
MOVE-CORRESPONDING
Assigns values between
identically-named components of structures.
Syntax
MOVE-CORRESPONDING
<struc1> TO <struc2>.
Moves the contents of the
components of structure <struc1> to the components of <struc2> that have
identical names.
MULTIPLY
Multiplies two single
fields.
Syntax
MULTIPLY <n> BY <m>.
Multiplies the content of
<n> by <m>, and stores the result in <n>. This is equivalent to: m=m*n.
MULTIPLY-CORRESPONDING
Multiplies components of
structures.
Syntax
MULTIPLY-CORRESPONDING
<struc1> BY <struc2>.
All the identically-named
subfields of the structures <struc1> and <struc2> are multiplied and the results
are stored these subfields of <struc1>.