Position Property



 
The Position property contains the job's position in the print queue.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
            Position
    
Possible Values
    Long value that retrieves the position.

    The property is read only.
Remarks Examples
    The following example displays the position in the print queue of the first available print job of the first available printer.

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

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

Back to top