Count Property



 
The Count property contains the number of code groups.


Syntax

    [long=] CodeGroupsCol.Count
    
Possible Values
    Long value that retrieves the number of groups.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the number of groups (maximum is 100).

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    codeGroups = SiteCafe.Server.Codes.GetCodeGroups(1, 100);
    alert(codeGroups.Count);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top