Delete Method



 
The Delete method deletes an admin.


Syntax

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

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

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

Back to top