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