1XmDirectionMatchPartial(library call) XmDirectionMatchPartial(library call)
2
3
4
6 XmDirectionMatchPartial — A function that checks for a specified direc‐
7 tion component
8
10 #include <Xm/Xm.h>
11 Boolean XmDirectionMatchPartial (d1, d2, dmask)
12 XmDirection d1;
13 XmDirection d2;
14 XmDirection dmask;
15 (void)
16
18 XmDirectionMatchPartial compares d1 and d2 along the direction compo‐
19 nent specified by dmask. For example, if dmask equals XmVERTICAL_MASK,
20 then the function will compare only the vertical components of d1 and
21 d2.
22
23 d1 Specifies an XmDirection value to check.
24
25 d2 Specifies an XmDirection value to check.
26
27 dmask Specifies the direction component along which d1 and d2 are
28 to be checked. Appropriate values for dmask are XmHORIZON‐
29 TAL_MASK, XmVERTICAL_MASK, and XmPRECEDENCE_MASK.
30
32 Returns True if the d1 and d2 match in the component specified by
33 dmask; otherwise, returns False.
34
36 XmDirection(3), XmDirectionMatch(3), XmDirectionToStringDirection(3),
37 XmStringDirection(3), and XmStringDirectionToDirection(3).
38
39
40
41 XmDirectionMatchPartial(library call)