GetAdmins Method
The GetAdmins method returns a range of admins.
Syntax
[obj=] SiteCafe.Server.Admins.GetAdmins(start, maxCount)
|
Parameters
start |
Long value that specifies the start admin. |
maxCount |
Long value that specifies the maximum number of admins. |
Return Value
Returns an AdminsCol collection containing the specified admins.
Remarks
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