1XmListDeleteItems(library call) XmListDeleteItems(library call)
2
3
4
6 XmListDeleteItems — A List function that deletes items from the list
7
9 #include <Xm/List.h>
10 void XmListDeleteItems(
11 Widget widget,
12 XmString *items,
13 int item_count);
14
16 XmListDeleteItems deletes the specified items from the list. For each
17 element of items, the first item in the list that matches that element
18 is deleted. A warning message appears if any of the items do not
19 exist.
20
21 widget Specifies the ID of the List from whose list an item is
22 deleted
23
24 items Specifies a pointer to items to be deleted from the list
25
26 item_count
27 Specifies the number of elements in items This number must be
28 nonnegative.
29
30 For a complete definition of List and its associated resources, see
31 XmList(3).
32
34 XmList(3).
35
36
37
38 XmListDeleteItems(library call)