Delete Method



 
The Delete method deletes an account.


Syntax

    SiteCafe.Server.Accounts.Delete(index)
    
Parameters
    index Long value that specifies the account index.
Return Value
    None.
Remarks
    None.
Examples
    The following example deletes the first account.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    accID = SiteCafe.Server.Accounts.Delete(1);
    </SCRIPT>
    

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

Back to top