Persistent Property



 
The Persistent property indicates whether the account is persistent.


Syntax

    [bool=] Account.Persistent
    
Possible Values
    Boolean value that retrieves the persistent status.

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

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
    alert(account.Persistent);
    </SCRIPT>
    

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

Back to top