JobCount Property



 
The JobCount property contains the number of print jobs.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index).JobCount
    
Possible Values
    Long value that retrieves the number of print jobs.

    The property is read only.
Remarks Examples
    The following example displays the number of print jobs of the first available printer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Printer.Printers.Item(1).JobCount);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top