< Previous lesson | Table of Content | Content of this Chapter | Next lesson >

Checking Array Variable

Use IsArray function.


Example:

' Declare array variables.
Dim MyArray(1 To 5) As Integer, YourArray, MyCheck


YourArray = Array(1, 2, 3) ' Use Array function .
MyCheck = IsArray(MyArray) ' Returns True.
MyCheck = IsArray(YourArray) ' Returns True

< Previous lesson | Table of Content | Content of this Chapter | Next lesson >