Returns a non-zero number if the specified value is an object.
TrueOrFalse := IsObject(ObjectValue)
A object stored in a variable, returned from a function, stored in another object or written directly.
This function returns 1 if ObjectValue is an object; otherwise 0.
object := {key: "value"}
if IsObject(object)
MsgBox, This is an object.
else
MsgBox, This is not an object.