CalendarControl Xojo Plugin

DateDictionary.Item Method

Use this variation of the Item function together with the Count function to iterate through all items in the dictionary.

Item(
   index as Integer) as Variant

Parameters

index
The index of the element to retrieve. Note that this is zero based which means that the first element is number zero.

Returns

Variant

Remarks

Iterating in this way can be slow since the Dictionary class was not designed for access like this. Also note that the returned elements will come in no particular order.

See Also

DateDictionary Class