Deactivated Property



 
The Deactivated property indicates whether this account is currently deactivated.


Syntax

    Account.Deactivated [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the disabled status.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines whether the first available account is currently deactivated and displays it.

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

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

Back to top