Item Method
The Item method returns one item of the collection.
Syntax
[obj=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2)
|
Parameters
index2 |
Long value that specifies the job number. |
Return Value
Returns a JobInfo object that provides information about the print job.
Remarks
Collection-index values are 1-based.
Examples
The following example shows the ID of the first print job of the first available printer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).JobId);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top