MonetaryDevice Property



 
The MonetaryDevice property indicates whether the device is a monetary device.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the first existing device is a monetary device and shows it in an alert window.

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

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

Back to top