WebPopupMenu.List

From Xojo Documentation

Property (As String )
aWebPopupMenu.List(Index as Integer) = newStringValue
or
StringValue = aWebPopupMenu.List(Index as Integer)

New in 2010r4

Supported for all project types and targets.

The list of items. List takes one parameter, the row index. The first row is numbered zero. Use it to get or set the contents of that item.

Example

This code in the SelectionChanged event handler displays the selected item in a WebLabel:

Label1.Text = Me.List(Me.ListIndex)