IsArray Function

 

IsArray(variablename )

 

Returns a boolean value True or False indicating whether the parameter vaiablename is an array.

 

 

Related Topics: IsEmpty, IsNumeric, VarType, IsObject

 

Example:

 

Sub Main

 

   Dim MArray(1 To 5) As Integer, MCheck

 

   MCheck = IsArray(MArray)

   Print MCheck

 

End Sub