Count Property
The Count property contains the number of print jobs.
Syntax
[long=] SiteKiosk.Printer.Printers.Item(index).Jobs.Count
|
Possible Values
Long value that retrieves the number of print jobs.
|
The property is read only.
Remarks
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