Feedback

  • Contents
 

User.startAvailableStatusMessagesEnum Enumeration Property

Definition

This property returns an enumeration of available status messages. 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

Queue.startAvailableStatusMessagesEnum

Usage

Read Yes

Write No

Value Assigned

None.

Value Returned

Enumeration

The enumeration containing the list of available status messages.


Java Enumeration Example (JavaScript)

<html>

<head>
<script language="javascript">     // populate the <select> element with all valid statuses     var Myenum = scripter.myUser.startAvailableStatusMessagesEnum;     while (Myenum.hasMoreElements()) {         StatusList.add(new Option(Myenum.nextElement));     } </script> </head>
<body>     <table>         <tr>             <td><select id="StatusList"></select></td>         </tr>     </table> </body> </html>