IsObject() [v1.0.90+]

Returns a non-zero number if the specified value is an object.

TrueOrFalse := IsObject(ObjectValue)

매개변수

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.

객체

예제

Reports "This is an object." because the value is an object.

object := {key: "value"}

if IsObject(object)
    MsgBox, This is an object.
else
    MsgBox, This is not an object.