contents   index   previous   next



seIsFunc

 

syntax:

   sebool

seIsFunc(secontext se,seobject object,

                      semember member,

                      sebool *script);

where:

se the context the object belongs to

 

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