This class implements a dynamic array of Date
values.
This class is creatable.
Create an array of Date
values. Size specifies the initial size of the array. By default, the array is initially void.
This class acts like an array.
DIM hDateArray AS Date[] DIM aDate AS Date aDate = hDateArray [ Index AS Integer ] |
Returns a value stored in the array from its index.
DIM hDateArray AS Date[] DIM aDate AS Date hDateArray [ Index AS Integer ] = aDate |
Modifies the value stored in the array at the specified index.
This class is enumerable with the FOR EACH keyword.
DIM hDateArray AS Date[] DIM aDate AS Date FOR EACH aDate IN hDateArray ... NEXT |
Enumerates each element stored in the array.