Multi

CONST Multi AS Integer = 1

Indicates a multiple selection mode. When a user selects the item the selection status of that item is toggled; so the item is either added or removed from the list.


Example

FOR i = 0 TO ListBox1.Count - 1
  IF ListBox1[i].Selected THEN
     Message.Info("Text is " & ListBox1[i].Text)
  ENDIF
NEXT