EscrowEnabled Property



 
The EscrowEnabled property indicates whether escrow functionality is enabled.


Syntax

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

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

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

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

Back to top