DIAdemヘルプ

Method: MultiSelection for ChnListBox

  • 更新日2024-09-12
  • 4分で読める

Method: MultiSelection for ChnListBox

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

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

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

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