Time Property



 
The Time property contains the total time, in milliseconds, that has elapsed since the job began printing.


Syntax

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

    The property is read only.
Remarks Examples
    The following example displays the total time that has elapsed since the first available print job of the first available printer began printing.

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

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

Back to top