Description Property
The Description property contains the description of the computer.
Syntax
Computer.Description [=str]
|
Possible Values
String that specifies or retrieves the description.
|
The property is read/write.
Remarks
Examples
The following example displays the description of the first available computer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
computer = SiteCafe.Server.Computers.GetComputerByIndex(1);
alert(computer.Description);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top