1XmListDeleteItemsPos(library call) XmListDeleteItemsPos(library call)
2
3
4
6 XmListDeleteItemsPos — A List function that deletes items from the list
7 starting at the given position
8
10 #include <Xm/List.h>
11 void XmListDeleteItemsPos(
12 Widget widget,
13 int item_count,
14 int position);
15
17 XmListDeleteItemsPos deletes the specified number of items from the
18 list starting at the specified position.
19
20 widget Specifies the ID of the List from whose list an item is
21 deleted.
22
23 item_count
24 Specifies the number of items to be deleted. This number
25 must be nonnegative.
26
27 position Specifies the position in the list of the first item to be
28 deleted. A value of 1 indicates that the first deleted item
29 is the first item in the list; a value of 2 indicates that it
30 is the second item; and so on.
31
32 For a complete definition of List and its associated resources, see
33 XmList(3).
34
36 XmList(3).
37
38
39
40 XmListDeleteItemsPos(library call)