2021.2

Table Of Contents
Examples
In the following example, log() will write an information entry in the watch log that says "this is a
log"
VBScript
Watch.Log "this is a log", 3
JavaScript
Watch.Log("this is a log", 3);
Python
Watch.Log("this is a log",3)
Perl
$Watch->Log("this is a log",3);
Watch.SetJobInfo
Sets the job information at the specified index to a specified string value. (See also: "Job Info
variables" on page716.)
Syntax
Watch.SetJobInfo(Index: Integer; Value: String)
Example
JavaScript
Watch.SetJobInfo(3, "Job info 3 Value");
VBScript
Watch.SetJobInfo 3, "Job info 3 Value"
Python
Watch.SetJobInfo(3, "Job info 3 Value")
Perl
$Watch->SetJobInfo(3, "Job info 3 Value");
Page 172