The following is an example of displaying a figurative constant where the
size specified is greater than the figurative constant and wraps around to
a new line:
DISPLAY ALL 'ABCD' AT 0270 WITH SIZE 15.
This
constant will be displayed on the screen starting with line 2, column 70:
0000000001 677777777778
1234567890................901234567890
Line 1
Line 2 ABCDABCDABC
Line 3 ABCD
Notice the differences between the following examples:
Statement 1 DISPLAY 'WORKSTATION' AT 0275 WITH SIZE 10
Statement 2 DISPLAY ALL 'WORKSTATION' AT 0275 WITH SIZE 10
0000000001 677777777778
1234567890................901234567890
Statement 1 WORKST
ATIO
Statement 2 WORKST
WORK