Index Property
The Index property contains the index number of the account.
Syntax
Possible Values
Long value that retrieves the index.
|
The property is read only.
Remarks
Examples
The following example displays the index number of the first available account.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.Index);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top