ConfirmJobs Property



 
The ConfirmJobs property indicates whether jobs must be confirmed.


Syntax

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

    The property is read only.
Remarks
    This setting has been configured in the SiteKiosk Wizard.
Examples
    The following example determines whether jobs must be confirmed 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).ConfirmJobs);
    </SCRIPT>
    

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

Back to top