Account Object
The Account object represents a SiteCafe account.
Members Table
The following table lists the members provided by the Account object.
Remarks
This object is returned by the GetAccountByIndex or Item method.
Use the Account object to modifiy or receive information about an account.
Examples
The following example displays the persistent status of the first available account.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.Persistent);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top