1XmTabGetValues(library call) XmTabGetValues(library call)
2
3
4
6 XmTabGetValues — A convenience function that returns tab values
7
9 #include <Xm/Xm.h>
10 float XmTabGetValues(
11 XmTab tab,
12 unsigned char *units,
13 XmOffsetModel *offset,
14 unsigned char *alignment,
15 char **decimal);
16
18 XmTabGetValues takes an XmTab structure, returns the floating point
19 number that is set as the value of the tab, and then sets values for
20 the units, offset, alignment, and decimal arguments where they are not
21 NULL. The returned floating point number represents the distance that
22 the rendering of the XmString segment associated with tab will be off‐
23 set. The offset is from either the beginning of the rendering or from
24 the previous tab stop, depending on the setting for the offset model.
25 The distance will use the unit type pointed at by unit.
26
27 tab Specifies the tab to get the value from.
28
29 units Specifies a pointer to the unit type.
30
31 offset Specifies a pointer to the offset model.
32
33 alignment Specifies a pointer to the alignment type.
34
35 decimal Specifies a pointer to the multibyte character used as the
36 decimal point.
37
39 Returns a floating point number that is set as the value of the tab.
40
42 XmTab(3).
43
44
45
46 XmTabGetValues(library call)