Watch.GetJobInfo

Returns job information corresponding to the specified index. Index is an integer from 1 to 9.

Syntax

Watch.GetJobInfo(Index: integer): string

Example

VBScript
Dim s
s = Watch.GetJobInfo(3)
Watch.Log "Jobinfo 3's value is: " + s, 2
JavaScript
var 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);
 
  • Last Topic Update: Jul-24-2018 - 10:07
  • Last Published: Sep-17-2019 - 09:09