FreeWhileZeroBalance Property



 
The FreeWhileZeroBalance property indicates whether this zone is for free while balance is zero.


Syntax

    SiteCashZone.FreeWhileZeroBalance [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the free status.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines whether the first existing zone is for free while balance is zero and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).FreeWhileZeroBalance);
    </SCRIPT>
    

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

Back to top