Advertising banner:

History
 
 IsArray
Home • Help • A0 • Customization Tools • FCAS • Language Reference • IsArray
 
IsArray (math)
Purpose
Determines whether the supplied argument is an array. It returns TRUE or FALSE depending on whether the supplied argument is an array.
Syntax
IsArray (ArgumentName)
Example
Sub Main()
        Dim i As Integer
        Dim arr(10) As Integer
        If IsArray(arr) Then
                For i = LBound(arr) To UBound(arr)
                        arr(i) = i
                Next i
        End If
End Sub