String[]

Inherits .Array

This class implements a dynamic array of String values.

This class is creatable.

DIM hStringArray AS String[]

hStringArray = NEW String[] ( [ Size AS Integer ] )

Create an array of String values.

Size specifies the initial size of the array. By default, the array is initially void.

This class acts like an array.

DIM hStringArray AS String[]
DIM aString AS String

aString = hStringArray [ Index AS Integer ]

Returns a value stored in the array from its index.


DIM hStringArray AS String[]
DIM aString AS String

hStringArray [ Index AS Integer ] = aString

Modifies the value stored in the array at the specified index.

This class is enumerable with the FOR EACH keyword.

DIM hStringArray AS String[]
DIM aString AS String

FOR EACH aString IN hStringArray
  ...
NEXT

Enumerates each element stored in the array.


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