Feedback

  • Contents
 

ConferenceObject.startMemberIdsEnum Enumeration Property

Definition

This property returns an enumeration of object ids for each object in the conference. The enumeration is traversed using the hasMoreElements and nextElement methods of the enumeration. Each call to the nextElement method returns successive elements of the series. The hasMoreElements method will return a Boolean true if this enumeration contains more elements.

Syntax

ConferenceObject.startMemberIdsEnum

Usage

Read Yes

Write No

Value Assigned

None.

Value Returned

Java Enumeration

The enumeration containing the list of ConferenceObjects.


Java Enumeration Example (JavaScript)

var members = ConferenceObject.startMemberIdsEnum;
while (members.hasMoreElements()) {
    var memberId = members.nextElement();
    alert(memberId);
}