AccountsCol Collection



 
The AccountsCol collection contains SiteCafe accounts.


Members Table

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

    Members

    Properties Description
    Count Contains the number of accounts.

    Methods Description
    Item Returns one item of the collection.

Remarks Examples
    The following example displays the persistent status of the first active account.

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

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

Back to top