1XmMultiListSelectRow(library call) XmMultiListSelectRow(library call)
2
3
4
6 XmMultiListSelectRow — A MultiList function that selects a row in the
7 list
8
10 #include <Xm/MultiList.h>
11 void XmMultiListSelectRow(
12 Widget widget,
13 XmString row,
14 Boolean notify);
15
17 XmMultiListSelectRow highlights the specified row in the MultiList wid‐
18 get.
19
20 widget Specifies the ID of the MultiList widget from whose list an
21 item is selected.
22
23 row Specifies the row number (starting from 0) to be selected in
24 the MultiList widget.
25
26 notify Specifies a Boolean value that when TRUE invokes the selec‐
27 tion callback for the current mode. From an application
28 interface view, calling this function with notify True is
29 indistinguishable from a user-initiated selection action.
30 When notify is FALSE, no callbacks are called.
31
32 For a complete definition of MultiList and its associated resources,
33 see XmMultiList(3).
34
36 XmMultiList(3).
37
38
39
40 XmMultiListSelectRow(library call)