1XmTabSetValue(library call) XmTabSetValue(library call)
2
3
4
6 XmTabSetValue — A convenience function that sets a tab stop
7
9 #include <Xm/Xm.h>
10 void XmTabSetValue(
11 XmTab tab,
12 float value);
13
15 XmTabSetValue sets the value field of the XmTab structure associated
16 with tab.
17
18 tab Specifies the tab to set the value of.
19
20 value Specifies the floating point number which represents the dis‐
21 tance that the rendering of the XmString segment associated
22 with tab will be offset. The offset is from either the begin‐
23 ning of the rendering or from the previous tab stop, depend‐
24 ing on the setting for the offset model. The distance depends
25 on the tab's unit type. Note that negative values are not
26 permitted, and that if a tab stop would cause text to over‐
27 lap, the x position for the segment is set immediately after
28 the end of the previous segment.
29
31 See also the Motif Programmer's Guide for more information about tabs
32 and tab lists. XmTab(3).
33
34
35
36 XmTabSetValue(library call)