CodeGroupsCol Collection



 
The CodeGroupsCol collection contains SiteCafe code groups.


Members Table

    The following table lists the members provided by the CodeGroupsCol collection.

    Members

    Properties Description
    Count Contains the number of code groups.

    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetCodeGroups method. Use the GetCodeGroups collection to receive information about a code group.

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