Balance Property



 
The Balance property contains the current balance.


Syntax

    [cur=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
           Balance
    
Possible Values
    Currency value that retrieves the balance.

    The property is read only.
Remarks Examples
    The following example displays the current balance of the account.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
    alert(SiteCafe.Balance);
    </SCRIPT>
    

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

Back to top