Index Property
The Index property contains the index number of the computer.
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 computer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
computer = SiteCafe.Server.Computers.GetComputerByIndex(1);
alert(computer.Index);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top