ProcessingFee Property
The ProcessingFee property contains the fee for using a credit card.
Syntax
[cur=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").ProcessingFee
|
Possible Values
Currency value that contains the fee.
|
The property is read only.
Remarks
This property is 0 if there is no fee for using credit cards.
Use the CurrencyFormatter object for currency functionality.
Examples
The following example shows the fee in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
alert(creditcard.ProcessingFee);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top