EscrowDevice Property



 
The EscrowDevice property indicates whether the device is an escrow device.


Syntax

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

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

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

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

Back to top