RetransferEnabled Property



 
The RetransferEnabled property indicates if the payment device can return credit to the script device account.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices("ScriptDevice").
    RetransferEnabled
    
Possible Values
    Boolean value that specifies or retrieves if credit can be returned.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines if credit can be returned and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    scash = SiteKiosk.Plugins("SiteCash").Devices("ScriptDevice");
    alert(scash.RetransferEnabled);
    </SCRIPT>
    

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

Back to top