Text EN Version 1.90

SECTION SYSTEM

Description

General import parameters are defined here:
Tabs and comments must not be used!!!

SET SepModus:

SET SepModus := @Length;
The record is defined by a specific length.
SET SepModus := @String;
The record is defined by one or more delimiters.

SET SepString:

e.g.:
SET SepString := "#*";
Here the record (when SET SepModus:=@String;) is delimited by the delimiter string #* .
The delimiter string (which can be formed with @Char and +) may also be a list of delimiter strings (formed with :).

SET RecordCount:

e.g.
SET RecordCount := 100;
Number of characters to import per record.

SET MaxRecords:

e.g.
SET MaxRecords :=10;
(Default value 0. This corresponds to no maximum number of records.)
Maximum number of records to import.

SET RecordRepeat:

e.g.
SET RecordRepeat := 2;
(Default value 1)
Specifies how often the delimiter string (or one of the delimiter strings)
must occur before a record is actually finished.

SET DocMultiplyer:

e.g.
SET DocMultiplyer :=2;
(Default value 1)
Specifies how many times the document should be written.

SET SaveMain:

e.g.
SET SaveMain := 0;
(Default value 1)
0=Main document is not saved.
1=Main document is saved.
@SaveMain in processing causes the setting to be inverted once for this Main document.
(If generally not saving -> save. If generally saving -> do not save.)

As of V1.93:

SET PostEOF:

e.g.
SET PostEOF := 1;
(Default value 0)
If PostEOF is set to one, the SECTION PROCESSING is called once again after the last record.

Note : This text was machine-translated and may contain inaccuracies.