2021.1

Table Of Contents
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);
Watch.GetMetadataFilename
Returns the complete path and file name of the metadata file associated with the current job file.
Example
JavaScript
Watch.GetMetadataFileName();
VBScript
Watch.GetMetadataFileName
Python
Watch.GetMetadataFileName()
Perl
$Watch->GetMetadataFileName();
Watch.GetOriginalFileName
Returns the original name of the file, when it was captured. This method is the same as PW_
GetOriginalFileName.
Example
JavaScript
Watch.GetOriginalFileName();
Page 167