WebPopupMenu.AddRow

From Xojo Documentation

Method

WebPopupMenu.AddRow(NewValue as String)

Supported for all project types and targets.

Adds NewValue to the end of the list of items. The list is zero-based.

Examples

Add a new rows to the popup menu in the Shown event handler:

Me.AddRow("One")
Me.AddRow("Two")
Me.AddRow("Three")
Me.AddRow("Four")