(Contents)(Previous)(Next)

GetBookings()

Description: Gets the list of bookings belonging to the planner
Syntax: object.GetBookings()
Parameters:
object Required, the Planner object
Remarks: This method returns the list of planner bookings.
Returns: PlannerBooking list
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set planner = session.GetPlanners.GetFirst

Set bookings = planner.GetBookings

Set booking = bookings.GetFirst

MsgBox booking.Name


Next