1XmMultiListSelectItems(library call) XmMultiListSelectItems(library call)
2
3
4
6 XmMultiListSelectItems — A MultiList function that selects items in the
7 list by matching column entries
8
10 #include <Xm/MultiList.h>
11 void XmMultiListSelectItems(
12 Widget widget,
13 XmString item,
14 int column,
15 Boolean notify);
16
18 XmMultiListSelectItems highlights rows in the list where column number
19 column matches item.
20
21 widget Specifies the ID of the MultiList widget from whose list an
22 item is selected.
23
24 item Specifies XmString to use as selection key.
25
26 column Specifies a column number (starting from 0) to match, or
27 XmANY_COLUMN for looking for any column.
28
29 notify Specifies a Boolean value that when TRUE invokes the selec‐
30 tion callback for the current mode. From an application
31 interface view, calling this function with notify True is
32 indistinguishable from a user-initiated selection action.
33 When notify is FALSE, no callbacks are called.
34
35 For a complete definition of MultiList and its associated resources,
36 see XmMultiList(3).
37
39 XmMultiList(3) and XmMultiListGetSelectRows(3).
40
41
42
43 XmMultiListSelectItems(library call)