Skip to main content

TdxWebServiceCalendarList Class

A collection of records populated with information on calendars from a connected online account.

Declaration

TdxWebServiceCalendarList = class(
    TList<TdxWebServiceCalendar>
)

Remarks

This class instantiates its ancestor with the TdxWebServiceCalendar record without introducing any new members. Since no changes made to the calendar list apply to the currently connected online account, there is no need to use the collection item management functionality that the TdxWebServiceCalendarList class provides. You can use the following class members to:

  • Identify the number of calendars within the connected account (Count);

  • Access a calendar by its index in the collection (Items);

  • Access the first or last calendar within the collection (First and Last);

  • Obtain all records stored within the collection as an array (List);

  • Obtain information on an individual calendar by its ID or Name (FindByID and FindByName).

The online event data provider‘s GetCalendarList function returns a TdxWebServiceCalendarList object.

Inheritance

TObject
TEnumerable<T>
TList<T>
TdxWebServiceCalendarList
See Also