ISOBJECT
Returns true if the specified value is an object value.
Syntax
=ISOBJECT(value)
Arguments
| Argument | Type | Description |
|---|---|---|
| value | Any | The value to test |
Examples
=ISOBJECT(1) → true
Tests whether the number 1 is an object value.
=ISOBJECT("Name") → false
Tests whether the string "Name" is an object value.
=ISOBJECT(OBJECT("A", 1, "B", 2)) → true
Tests whether the object with key-value pairs "A" => 1, "B" => 2 is an object value.
=ISOBJECT(@"Property 1") → false
Tests whether the shape data property @"Property 1" (123) is an object value.
Updated over 1 year ago