IsArray Function

Checks to see if the expression is an array.

IsArray (expression)

Parameters

Expression  -  (Input, expression, Required)

Specifies the expression to be evaluated.

Return Value

Returns True if the expression evaluates to an array, otherwise False.

Examples

IsArray(1)

Returns False

IsArray("abc")

Returns False

SetValue(temp, 1)

IsArray(temp)

Returns False

SetValue(tempArray(0), 1)

IsArray(tempArray)

Returns True

IsArray(Error)

Returns False

TIP:

Functions are specifically for use in the Macro Editor. Refer to Microsoft's official VB and JScript documentation for scripting equivalents.

See Also

Functions | UBound Function | IsDate function | IsEmpty function | IsError function | IsNull function | IsNumeric function | IsSpaces function | IsURL function


© 2004-2021 looksoftware. All rights reserved.