1XmListDeletePos(library call) XmListDeletePos(library call)
2
3
4
6 XmListDeletePos — A List function that deletes an item from a list at a
7 specified position
8
10 #include <Xm/List.h>
11 void XmListDeletePos(
12 Widget widget,
13 int position);
14
16 XmListDeletePos deletes an item at a specified position. A warning
17 message appears if the position does not exist.
18
19 widget Specifies the ID of the List from which an item is to be
20 deleted.
21
22 position Specifies the position of the item to be deleted. A value of
23 1 indicates that the first item in the list is deleted; a
24 value of 2 indicates that the second item is deleted; and so
25 on. A value of 0 (zero) indicates that the last item in the
26 list is deleted.
27
28 For a complete definition of List and its associated resources, see
29 XmList(3).
30
32 XmList(3).
33
34
35
36 XmListDeletePos(library call)