contents   index   previous   next



seGetAttribs

 

syntax:

   seAttributes

seGetAttribs(secontext,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:

The attributes of the member

 

description:

This function gets a member's attributes. The attributes a member has can be one or more of the following flags, |'d togethor:

 

SE_DEFAULT

 

No special attributes

 

SE_DONTENUM

 

The member is not enumerated when the for..in statement is used on this object.

 

SE_DONTDELETE

 

Using the delete operator on this member is ignored.

 

SE_READONLY

 

Attempts to write to the member are ignored.

 

SE_IMPLICIT_THIS

 

Only objects can have this attribute, it has no meaning for a non-object member. When the object is called as a function, the this variable is added to the function's scope chain. See the SCOPING section for more information.

 

SE_IMPLICIT_THIS

 

Only objects can have this attribute, it has no meaning for a non-object member. When the object is called as a function, the this variable's parents are added to the function's scope chain. See the SCOPING section for more information.

 

SE_DYNA_UNDEF

 

Only objects can have this attribute, it has no meaning for a non-object member. Dynamic callbacks of the object are only invoked if the object does not have the member being worked on in its internal store. See DYNAMIC OBJECTS for more information.

 

see:

seSetAttribs

 


seCompare