IL Insert Empty Records

IL [n], [len] [item]  Insert blank Lines. n empty records are inserted between the first and second displayed record.

n Number of records to be inserted. Standard: n = 1.

len Length of the data portion of the record to be inserted. The ISAM key and record length field are not included in the length of the data portion.

Standard: 72. Records of 72 data bytes are inserted.

item The record being inserted is filled with the specified string.

Standard: C'_'. A record consisting of blanks is inserted.

Examples:

IL 100,256C'0123456789'

100 records are inserted between the first and the second records in the display, if the difference between the two keys allows it. The length of the record will be determined by the length of the ISAM key, plus 4 bytes for the record length field, + 256 bytes of data. The 256 data bytes will contain the string C'0123456789'. This specified string will appear in the output record 25 times completely, and the first 6 bytes once.

IL ,80

A single record consisting of 80 blanks will be inserted after the first record in the display.