WebPopupMenu.RemoveRow

From Xojo Documentation

Method

WebPopupMenu.RemoveRow(Index As Integer)

Supported for all project types and targets.

Removes the specified row. The list of items is zero-based.

Examples

Remove the first row from the PopupMenu:

If PopupMenu1.ListCount > 0 Then
PopupMenu1.RemoveRow(0) // Remove the first row
End If