ECashDevice Property



 
The ECashDevice property indicates whether the device is a virtual money device.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).ECashDevice
    
Possible Values
    Boolean value that retrieves the ECashDevice status.

    The property is read only.
Remarks
    ECash devices are virtual money devices like credit card readers. E.g. a bill acceptor is not an ECash device.
Examples
    The following example determines whether the first existing device is an ECashDevice and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Devices2.Item(1).ECashDevice);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.5 (and later versions).

Back to top