Returns a Boolean value indicating whether a variant holds an array.
Bool = IsArray(varname)
IsArray returns True if the variable is an array; otherwise, it returns False. IsArray is especially useful with variants containing arrays.
Local a As Variant, x
a = Array(1, 2, 3)
Print a(1)
Print IsArray(a)
Local b%(10)
Print IsArray(b%(1))
Array, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject
{Created by Sjouke Hamstra; Last updated: 10/10/2014 by James Gaite}