1XmListSetBottomPos(library call) XmListSetBottomPos(library call)
2
3
4
6 XmListSetBottomPos — A List function that makes a specified item the
7 last visible item in the list
8
10 #include <Xm/List.h>
11 void XmListSetBottomPos(
12 Widget widget,
13 int position);
14
16 XmListSetBottomPos makes the item at the specified position the last
17 visible item in the List.
18
19 widget Specifies the ID of the List widget.
20
21 position Specifies the position of the item to be made the last visi‐
22 ble item in the list. A value of 1 indicates that the first
23 item in the list is the last visible item; a value of 2 indi‐
24 cates that the second item is the last visible item; and so
25 on. A value of 0 (zero) indicates that the last item in the
26 list is the last visible item.
27
28 For a complete definition of List and its associated resources, see
29 XmList(3).
30
32 XmList(3).
33
34
35
36 XmListSetBottomPos(library call)