Count Property



 
The Count property contains the number of codes.


Syntax

    [long=] CodesCol.Count
    
Possible Values
    Long value that retrieves the number of codes.

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

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

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

Back to top