Level Property



 
The Level property contains the admin's arbitrary level.


Syntax

    Admin.Level [=long]
    
Possible Values
    Long value that specifies or retrieves the level.

    The property is read/write.
Remarks
    This arbitrary level is interpreted only by the skin.
Examples
    The following example displays the level of the first available admin.

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

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

Back to top