SingleReturn Property



 
The SingleReturn property indicates whether the device allows returning single coins/notes.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the device allows returning single coins/notes and shows it in an alert window.

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

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

Back to top