|
Watch.GetJobInfoReturns job information corresponding to the specified index. Index is an integer from 1 to 9. SyntaxWatch.GetJobInfo(Index: integer): string ExampleVBScriptDim s s = Watch.GetJobInfo(3) Watch.Log "Jobinfo 3's value is: " + s, 2 JavaScriptvar s; s = Watch.GetJobInfo(3); Watch.Log("Jobinfo 3's value is: " + s, 2); Pythons = 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); |
|