Field-Map Scripting

4.1.1.3.9 Log

Log procedure


Prototype:

procedure Log (const Str: string);

Description:

The Log procedure is used to write the message specified by the Str parameter to the log window as a separate line (the last line in the log window).

Syntax:

Log(Str);


Part

Description


Str

A string parameter is the message which will appears as a new line in the log window.

Return value:

none



Example:


begin
  OpenLog('Processing summaries of measured trees');
  Log(format(#9'Number of plots = %d',[NumberOfPlots]]));    
end.