EnableForFreeZone Property



 
The EnableForFreeZone property indicates whether printing should be for free in a free of charge zone.


Syntax

    [bool=] SiteKiosk.Printer.Printers.Item(index).EnableForFreeZone
    
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 shows whether or not free printing in free of charge zones is enabled.

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

Applies to
    SiteKiosk v7.7 (and later versions).

Back to top