Price Property



 
The Price property contains the price per page.


Syntax

    [currency=] SiteKiosk.Printer.Printers.Item(index).Price
    
Possible Values
    Currency value that retrieves the price per page.

    The property is read only.
Remarks
    This setting has been configured in the SiteKiosk Wizard.

    Use the CurrencyFormatter object for currency functionality.
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