ChargeForPrinting Property



 
The ChargeForPrinting property indicates whether printing is charged.


Syntax

    [bool=] SiteKiosk.Printer.Printers.Item(index).ChargeForPrinting
    
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 displays the price per page if printing with the first available printer is charged.

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

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

Back to top