Count Property



 
The Count property contains the number of accounts.


Syntax

    [long=] AccountsCol.Count
    
Possible Values
    Long value that retrieves the number of accounts.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the number of active accounts (maximum is 100).

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    accounts = SiteCafe.Server.Accounts.GetAccounts(0, 0, 1, 100, true);
    alert(accounts.Count);
    </SCRIPT>
    

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

Back to top