ISARRAY
Returns true if the specified value is an array.
Syntax
=ISARRAY(value)
Arguments
Argument | Type | Description |
---|---|---|
value | Any | The value to test |
Examples
=ISARRAY(children(this))
→ true
Tests whether the result of getting children for this shape is an array.
=ISARRAY("Name")
→ false
Tests whether the string "Name" is an array.
=ISARRAY(ARRAY(1, 2))
→ true
Tests whether the string [1, 2] is an array.
=ISARRAY(@"Property 1")
→ false
Tests whether the shape data property @"Property 1" (123) is an array.
Updated 6 months ago