GetCodeGroups Method
The GetCodeGroups method returns a range of code groups.
Syntax
[obj=] SiteCafe.Server.Codes.GetCodeGroups(start, maxCount)
|
Parameters
start |
Long value that specifies the start group. |
maxCount |
Long value that specifies the maximum number of groups. |
Return Value
Returns a CodeGroupsCol collection containing the specified code groups.
Remarks
Examples
The following example displays the name of the first code group.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
codeGroups = SiteCafe.Server.Codes.GetCodeGroups(1, 10);
alert(codeGroups.Item(1).Name);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top