1XmListAddItemsUnselected(library call) XmListAddItemsUnselected(library call)
2
3
4
6 XmListAddItemsUnselected — A List function that adds items to a list
7
9 #include <Xm/List.h>
10 void XmListAddItemsUnselected(
11 Widget widget,
12 XmString *items,
13 int item_count,
14 int position);
15
17 XmListAddItemsUnselected adds the specified items to the list at the
18 given position. The inserted items remain unselected, even if they cur‐
19 rently appear in the XmNselectedItems list.
20
21 widget Specifies the ID of the List widget to add items to.
22
23 items Specifies a pointer to the items to be added to the list.
24
25 item_count
26 Specifies the number of elements in items. This number must
27 be nonnegative.
28
29 position Specifies the position of the first new item in the list. A
30 value of 1 makes the first new item the first item in the
31 list; a value of 2 makes it the second item; and so on. A
32 value of 0 (zero) makes the first new item follow the last
33 item of the list.
34
35 For a complete definition of List and its associated resources, see
36 XmList(3).
37
39 XmList(3).
40
41
42
43 XmListAddItemsUnselected(library call)