CodeGroup Object



 
The CodeGroup object represents a SiteCafe code group.


Members Table

    The following table lists the members provided by the CodeGroup object.

    Members

    Properties Description
    CreationDate Creation date.
    Index Index number.
    Name Name of the code group.

    Methods Description
    GetCodes Returns a range of codes of this group.

Remarks
    This object is returned by the GetCodeGroupByIndex or Item method. Use the CodeGroup object to modifiy or receive information about a code group.

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