CurAmount Property
The CurAmount property contains the current amount.
Syntax
Possible Values
Currency value that retrieves the amount.
|
The property is read only.
Remarks
This property is valid only if the mode is 1.
Use the CurrencyFormatter object for currency functionality.
Examples
The following example displays the amount of the first available account.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.CurAmount);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top