contents   index   previous   next



seIsFunc

 

syntax:

   boolean

SEContext.seIsFunc(SEObject object,

                   SEMemberDesc member,

                   boolean[] script);

where:

object the object half of an Object,Member pair.

 

member the member half of an Object,Member pair.

 

script an output parameter, true if the function is a script function as opposed to a wrapper function.

 

return:

The boolean true if the object is a function.

 

description:

All functions in ScriptEase are objects, but not all objects are functions. The API call lets you determine if an object is in fact a function. If it is, the output boolean script will be true if the function is a script function, false if it is a wrapper function.

 

see:

seIsArray

 


seIsArray