AdminsCol Collection



 
The AdminsCol collection contains SiteCafe admins.


Members Table

    The following table lists the members provided by the AdminsCol collection.

    Members
    Properties Description
    Count Contains the number of admins.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetAdmins method. Use the AdminsCol collection to receive information about an admin.

Examples
    The following example displays the name of the first admin.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    admins = SiteCafe.Server.Admins.GetAdmins(1, 10);
    alert(admins.Item(1).Name);
    </SCRIPT>
    

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

Back to top