EnableMoney Property
The EnableMoney property indicates whether money mode is enabled.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
EnableMoney
|
Possible Values
Boolean value that retrieves the money mode status.
|
The property is read only.
Remarks
Money mode means that the credit will be decreased (prepaid).
Examples
The following example determines whether money mode is enabled and displays it.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.EnableMoney);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top