Count Property
The Count property contains the number of admins.
Syntax
Possible Values
Long value that retrieves the number of admins.
|
The property is read only.
Remarks
Examples
The following example displays the number of admins (maximum is 100).
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
admins = SiteCafe.Server.Admins.GetAdmins(1, 100);
alert(admins.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top