seObjectMemberCountDirect
syntax: |
sememcount seObjectMemberCountDirect(secontext se, seobject object); |
where: |
se the context the object is a part of
object the object to query
|
return: |
The number of members the object has.
|
description: |
This call returns the number of members an object has. The usual use is to iterate through all the members, using SE_INDEX() from 0 to one less than the result of this call. This version of the call ignores the object callback getMaxIndex and returns the number of members the object has in its internal storage. It is useful for implementing object callbacks.
|
see: |
seObjectMemberName, ObjectMemberCount
|