1GINQ_TEXT_ALIGN(3NCARG) NCAR GRAPHICS GINQ_TEXT_ALIGN(3NCARG)
2
3
4
6 ginq_text_align (Inquire text alignment) - retrieves the horizontal and
7 vertical text alignments.
8
10 #include <ncarg/gks.h>
11
12 void ginq_text_align(Gint *err_ind, Gtext_align *text_align);
13
15 err_ind (Output) - If the inquired values cannot be returned cor‐
16 rectly, a non-zero error indicator is returned in err_ind,
17 otherwise a zero is returned. Consult "User's Guide for
18 NCAR GKS-0A Graphics" for a description of the meaning of
19 the error indicators.
20
21 text_align.hor
22 (Output) - Returns the current horizontal text alignment:
23
24 GHOR_NORM
25 Normal (default)
26
27 GHOR_LEFT
28 Left
29
30 GHOR_CTR
31 Center
32
33 GHOR_RIGHT
34 Right
35
36 text_align.vert
37 (Output) - Returns the current vertical text alignment:
38
39 GVERT_NORM
40 Normal (default)
41
42 GVERT_TOP
43 Top
44
45 GVERT_CAP
46 Cap
47
48 GVERT_HALF
49 Half
50
51 GVERT_BASE
52 Base
53
54 GVERT_BOTTOM
55 Bottom
56
58 To use the GKS C-binding routines, load the ncarg_gks and ncarg_c
59 libraries.
60
62 Online: gtext(3NCARG), gset_text_path(3NCARG), gset_text_align(3NCARG),
63 gset_text_font_prec(3NCARG), gset_char_ht(3NCARG),
64 gset_char_space(3NCARG), gset_char_up_vec(3NCARG),
65 gset_char_expan(3NCARG), gset_colr_rep(3NCARG),
66 gset_text_colr_ind(3NCARG), ginq_text_path(3NCARG),
67 ginq_text_align(3NCARG), ginq_text_font_prec(3NCARG),
68 ginq_char_ht(3NCARG), ginq_char_space(3NCARG),
69 ginq_char_up_vec(3NCARG), ginq_char_expan(3NCARG), plotchar(3NCARG),
70 ngdots(3NCARG), gks(3NCARG), ncarg_gks_cbind(3NCARG)
71
72 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
73 mentals, UNIX Version
74
76 Copyright (C) 1987-2009
77 University Corporation for Atmospheric Research
78 The use of this Software is governed by a License Agreement.
79
80
81
82UNIX March 1993 GINQ_TEXT_ALIGN(3NCARG)