1XmStringDirectionCreate(library call) XmStringDirectionCreate(library call)
2
3
4
6 XmStringDirectionCreate — A compound string function that creates a
7 compound string
8
10 #include <Xm/Xm.h>
11 XmString XmStringDirectionCreate(
12 XmStringDirection direction);
13
15 XmStringDirectionCreate creates a compound string with a single compo‐
16 nent, a direction with the given value. When the application no longer
17 needs the returned compound string, the application should call
18 XmStringFree.
19
20 direction Specifies the value of the direction component. The possible
21 values are:
22
23 XmSTRING_DIRECTION_L_TO_R
24 Specifies left to right display.
25
26 XmSTRING_DIRECTION_R_TO_L
27 Specifies right to left display.
28
29 XmSTRING_DIRECTION_DEFAULT
30 Specifies that the display direction will be set by
31 the widget in which the compound string is to be
32 displayed.
33
35 Returns a new compound string.
36
38 XmStringCreate(3).
39
40
41
42 XmStringDirectionCreate(library call)