Volatile Property



 
The Volatile property indicates if the balance can change spontaneously.


Syntax

    SiteKiosk.Plugins("SiteCash").Devices("ScriptDevice").Volatile [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the volatility status.

    The property is read/write.
Remarks
    This property sets the work mode of the pull mode. If true, always the complete amount is demanded.
Examples
    The following example determines the volatility status and shows it in an alert window.

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

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

Back to top