MaxAmount Property
The MaxAmount property contains the maximum amount to pay.
Syntax
[cur=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").MaxAmount
|
Possible Values
Currency value that contains the maximum amount.
|
The property is read only.
Remarks
Examples
The following example shows the maximum amount in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
alert(creditcard.MaxAmount);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top