DIAdem-Hilfe

Method: MultiSelection for ChnListBox <XTable>

  • Aktualisiert2024-09-12
  • 2 Minute(n) Lesezeit

Method: MultiSelection for ChnListBox <XTable>

Returns a collection of the selected channels of a channel selection list, in extended tables in user dialog boxes.

Set oChnMultiSelection = Object.MultiSelection
ObjectChnListBox <XTable>
Object with this method
oChnMultiSelectionChnMultiSelection
Returned object

The following example displays all the selected terms of the channel selection list:

Dim i
For i = 1 To Cell.MultiSelection.Count
  Call MsgBoxDisp(Cell.MultiSelection(i).Text)
Next