Name Property
The Name property contains the name of the code group.
Syntax
Possible Values
String that specifies or retrieves the name.
|
The property is read/write.
Remarks
Examples
The following example displays the name of the first available code group.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
codeGroup = SiteCafe.Server.Codes.GetCodeGroupByIndex(1);
alert(codeGroup.Name);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top