seExistsDirect
syntax: |
sebool seExistsDirect(secontext se,seobject object, semember member); |
where: |
se the context the member is in
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
|