Class
ListBox,
ListView, and
TreeView.
Action
Tests whether the list, list box, list view, or tree view supports multiple selections.
Availability
This functionality is supported only if you are using the Classic Agent.
Syntax
bSupports = object.IsMultiSel()
Variable
|
Description
|
bSupports
|
TRUE if the list supports multiple selections.
BOOLEAN.
|
Notes
- Windows does not support multiple-selection treeview controls.
- The
IsMultiSel function is not available in the
ListViewEx class, which is the equivalent of the
ListView class on the Open Agent. To achieve the same functionality for a listview on the Open Agent, use the
AllowsMultiSelect property of the
ListViewEx class.
Example
BOOLEAN bDoesSupport
bDoesSupport = Find.Open.Files.IsMultiSel()