contents   index   previous   next



seExistsDirect

 

syntax:

Boolean

SEContext.seExistsDirect(SEObject object,

                         SEMemberDesc memer);

where:

object the Object half of an Object,Member pair

 

member the Member half of an Object,Member pair

 

return:

true if the member exists, else false.

 

description:

This API function is used in place of seGetType when you do not care what the type of the member is, only if it exists or not. Unlike seExists, this function ignores any dynamic properties on the object and only checks if the internal ScriptEase storage for the object contains the given member. Like all the Direct functions, it is meant to be used in implementing object dynamic functions so that the dynamic functions themselves can use the internal ScriptEase store without having to take into account the possibility of being called by each other.

 

see:

seGetType, seExists

 


seGetAttribs