Date[]

Inherits .Array

This class implements a dynamic array of Date values.

This class is creatable.

DIM hDateArray AS Date[]

hDateArray = NEW Date[] ( [ Size AS Integer ] )

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.


Properties  Methods 
Count  Length  Max    Add  Clear  Copy  Find  Insert  Pop  Push  Read  Remove  Resize  Reverse  Sort  Write