ShowPrinterInDialog Property



 
The ShowPrinterInDialog property indicates whether to show the printer in the SiteKiosk print dialog.


Syntax

    [bool=] SiteKiosk.Printer.Printers.Item(index).ShowPrinterInDialog
    
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 to show the first available printer in the SiteKiosk print dialog.

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

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

Back to top