SequentialReturn Property



 
The SequentialReturn property indicates whether coins can only be returned in the same order as inserted.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the first existing device can return coins only in the same order as inserted.

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

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

Back to top