Watch.GetJobInfo
Returns the job information corresponding to the specified index. Index is an integer from 1 to 9. (See also: Job Info variables.)
Syntax
Watch.GetJobInfo(Index: integer): string
Example
JavaScript
var s; s = Watch.GetJobInfo(3); Watch.Log("Jobinfo 3's value is: " + s, 2);
VBScript
Dim s s = Watch.GetJobInfo(3) Watch.Log "Jobinfo 3's value is: " + s, 2
Python
s = Watch.GetJobInfo(3) Watch.Log("Jobinfo 3's value is: " + s, 2)
Perl
$s = $Watch->GetJobInfo(3); $Watch->ShowMessage("Jobinfo 3's value is: " . $s, 2);