CreditStatus Property



 
The CreditStatus property indicates if there is credit available.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").CreditStatus
Possible Values
    Boolean value that retrieves if credit is available.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if credit is available and shows the amount in an alert window.

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

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

Back to top