1XmListDeleteItem(library call) XmListDeleteItem(library call)
2
3
4
6 XmListDeleteItem — A List function that deletes an item from the list
7
9 #include <Xm/List.h>
10 void XmListDeleteItem(
11 Widget widget,
12 XmString item);
13
15 XmListDeleteItem deletes the first item in the list that matches item.
16 A warning message appears if the item does not exist.
17
18 widget Specifies the ID of the List from whose list an item is
19 deleted.
20
21 item Specifies the text of the item to be deleted from the list.
22 If item appears more than once in the List, only the first
23 occurrence is matched.
24
25 For a complete definition of List and its associated resources, see
26 XmList(3).
27
29 XmList(3).
30
31
32
33 XmListDeleteItem(library call)