Count Property
The Count property contains the number of accepted credit cards.
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
AcceptedCards.Count
|
Possible Values
Long value that retrieves the number of accepted cards.
|
The property is read only.
Remarks
Examples
The following example shows the number of accepted cards in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
alert(creditcard.AcceptedCards.Count);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top