Checks if the value is an array.
Function IsArray
none
tells if it is an array or not
Example
Sample code
Dim val
UserVar.value = Array( "string1", "string2", "string3" )
If UserVar.IsArray() Then
val = UserVar.GetAt( 0 )
Else val = Empty
End If
See also