Count Property



 
The Count property contains the number of bookings.


Syntax

    [long=] BookingsCol.Count
    
Possible Values
    Long value that retrieves the number of bookings.

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

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    bookings = SiteCafe.Server.Bookings.GetBookings(1, 0, 0, 1, 100);
    alert(bookings.Count);
    </SCRIPT>
    

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

Back to top