contents   index   previous   next



seObjectMemberName

 

syntax:

   seconstcharptr

seObjectMemberName(secontext se,

                   seobject object,

                   semember member,

                   sememcount *len);

where:

se the context the member is a part of

 

object the object the member is in

 

member which member to get the name of

 

len the length in characters of the member name

 

return:

The member name.

 

description:

This function is used to get the name of a member. It is most useful when enumerating the members of an object using the SE_INDEX() member access macro. If there is no such member then a blank string is returned and SE_RETURN,SE_ERROR will have been set.

 

Unlike seGetName, only the members name is returned, not a fully-qualified variable name.

 

The returned value is treated just like a return from seGetStringEx in terms of its lifetime, following the usual ScriptEase lifetime rules.

 

see:

seGetStringEx, seGetName, seObjectMemberCount

 


seIsFunc