AccountIndex Property



 
The AccountIndex property contains the account index number.


Syntax

    [long=] Booking.AccountIndex
    
Possible Values
    Long value that retrieves the index.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the account index number of the first account's first booking.

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

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

Back to top