Field-Map Scripting

4.1.4.5 WriteLn

WriteLn procedure


Prototype:

procedure WriteLn(f: integer; const line: string);

Description:

The WriteLn procedure writes a line to the file.

Syntax:

WriteLn(f,line);


Part

Description


f

The identifier of the file as returned by the AssignFile function


line

A line of text to write.

Return value:

none



Example:


See chapters Rewrite or Append.


See also:

AssignFile; Reset; Rewrite; Append; WriteLn; ReadLn; EOF; CloseFile; DeleteFile; SaveStringToFile; SaveStringToFileAsUTF8