1XmListSetHorizPos(library call) XmListSetHorizPos(library call)
2
3
4
6 XmListSetHorizPos — A List function that scrolls to the specified posi‐
7 tion in the list
8
10 #include <Xm/List.h>
11 void XmListSetHorizPos(
12 Widget widget,
13 int position);
14
16 XmListSetHorizPos sets the XmNvalue resource of the horizontal Scroll‐
17 Bar to the specified position and updates the visible portion of the
18 list with the new value if the List widget's XmNlistSizePolicy is set
19 to XmCONSTANT or XmRESIZE_IF_POSSIBLE and the horizontal ScrollBar is
20 currently visible. This is equivalent to moving the horizontal Scroll‐
21 Bar to the specified position.
22
23 widget Specifies the ID of the List widget
24
25 position Specifies the horizontal position
26
27 For a complete definition of List and its associated resources, see
28 XmList(3).
29
31 XmList(3).
32
33
34
35 XmListSetHorizPos(library call)