Jobs Collection
The Jobs collection contains all print jobs of a printer.
Members Table
The following table lists the members provided by the Jobs collection.
|
Properties |
Description |
Count |
Number of print jobs. |
|
Methods |
Description |
Item |
Returns an item of the collection. |
|
Remarks
This collection is available through the object PrinterInfo.
Use the Jobs collection to receive information about a print job.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example shows the number of print jobs of the first available printer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).Jobs.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top