1XmStringDirectionToDirection(libraryXcmaSltlr)ingDirectionToDirection(library call)
2
3
4
6 XmStringDirectionToDirection — A function that converts from
7 XmStringDirection to XmDirection
8
10 #include <Xm/Xm.h>
11 XmDirection XmStringDirectionToDirection(
12 XmStringDirection direction);
13
15 XmStringDirectionToDirection converts the specified XmStringDirection
16 direction value to its equivalent XmDirection value. This function pro‐
17 vides backward compatibility with the XmStringDirection data type.
18
19 direction Specifies the XmStringDirection value to be converted.
20
22 Returns the following XmDirection values:
23
24 XmLEFT_TO_RIGHT
25 If the direction argument is XmSTRING_DIRECTION_L_TO_R.
26
27 XmRIGHT_TO_LEFT
28 If the direction argument is XmSTRING_DIRECTION_R_TO_L.
29
30 XmDEFAULT_DIRECTION
31 If the direction argument was not either of the above.
32
34 XmStringDirection(3) and XmDirection(3).
35
36
37
38 XmStringDirectionToDirection(library call)