PersistentAccount Property



 
The PersistentAccount property indicates whether the account is persistent.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
            PersistentAccount
    
Possible Values
    Boolean value that retrieves the persistent status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the account is persistent and displays it.

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

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

Back to top