1GINQ_TEXT_PATH(3NCARG) NCAR GRAPHICS GINQ_TEXT_PATH(3NCARG)
2
3
4
6 ginq_text_path (Inquire text path) - retrieves the current text path.
7
9 #include <ncarg/gks.h>
10
11 void ginq_text_path(Gint *err_ind, Gtext_path *text_path);
12
14 err_ind (Output) - If the inquired value cannot be returned cor‐
15 rectly, a non-zero error indicator is returned in err_ind,
16 otherwise a zero is returned. Consult "User's Guide for
17 NCAR GKS-0A Graphics" for a description of the meaning of
18 the error indicators.
19
20 text_path (Output) - Returns the current text path as set by default
21 or by a call to gset_text_path. Legal values are:
22
23 GPATH_RIGHT
24 Draw successive characters in the string such that
25 character n+l appears to the right of character n.
26 This is text path "right" and is the default.
27
28 GPATH_LEFT
29 Draw character n+1 to the left of character n. This
30 is text path "left".
31
32 GPATH_UP
33 Draw character n+1 above character n. This is text
34 path "up".
35
36 GPATH_DOWN
37 Draw character n+1 below character n. This is text
38 path "down".
39
41 To use the GKS C-binding routines, load the ncarg_gks and ncarg_c
42 libraries.
43
45 Online: gtext(3NCARG), gset_text_path(3NCARG), gset_text_align(3NCARG),
46 gset_text_font_prec(3NCARG), gset_char_ht(3NCARG),
47 gset_char_space(3NCARG), gset_char_up_vec(3NCARG),
48 gset_char_expan(3NCARG), gset_colr_rep(3NCARG),
49 gset_text_colr_ind(3NCARG), ginq_text_path(3NCARG),
50 ginq_text_align(3NCARG), ginq_text_font_prec(3NCARG),
51 ginq_char_ht(3NCARG), ginq_char_space(3NCARG),
52 ginq_char_up_vec(3NCARG), ginq_char_expan(3NCARG), plotchar(3NCARG),
53 gks(3NCARG), ncarg_gks_cbind(3NCARG)
54
55 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
56 mentals, UNIX Version
57
59 Copyright (C) 1987-2007
60 University Corporation for Atmospheric Research
61
62 This documentation is free software; you can redistribute it and/or
63 modify it under the terms of the GNU General Public License as pub‐
64 lished by the Free Software Foundation; either version 2 of the
65 License, or (at your option) any later version.
66
67 This software is distributed in the hope that it will be useful, but
68 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
69 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
70 Public License for more details.
71
72 You should have received a copy of the GNU General Public License along
73 with this software; if not, write to the Free Software Foundation,
74 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
75
76
77
78UNIX March 1993 GINQ_TEXT_PATH(3NCARG)