ManualInputEnabled Property
The ManualInputEnabled property specifies whether manual credit card input is enabled.
Syntax
[boolean=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
ManualInputEnabled
|
Possible Values
Boolean value that specifies or retrieves whether manual credit
card input is enabled.
|
The property is read/write.
Remarks
Examples
The following example shows whether manual credit card input is enabled in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
ccardinfo = creditcard.CreateCardInfo();
alert(ccardinfo.ManualInputEnabled);
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top