AccessDevice Property



 
The AccessDevice property indicates whether the device is an access device.


Syntax

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

    The property is read only.
Remarks
    For example, the time limiter or SiteCafe in time mode is an access control device. A payment device like a coin validator is not an access device.
Examples
    The following example determines whether the first existing device is an access device and shows it in an alert window.

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

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

Back to top