KeepPrinterPausedOnQuit Property



 
The KeepPrinterPausedOnQuit property indicates whether the pause status is kept when quitting.


Syntax

    [bool=] SiteKiosk.Printer.Printers.Item(index).KeepPrinterPausedOnQuit
    
Possible Values
    Boolean value that retrieves the status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the pause status is kept when quitting for the first available printer and displays it in an alert window.

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

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

Back to top