1GAGETC(3NCARG) NCAR GRAPHICS GAGETC(3NCARG)
2
3
4
6 GAGETC - Retrieves the value of a specified internal parameter of type
7 CHARACTER.
8
10 CALL GAGETC (PNAM,CVAL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_gagetc (char *pnam, char *cval, int len)
16
18 PNAM (an input constant or variable of type CHARACTER) is a
19 string three or more characters in length, the first three
20 characters of which constitute the name of the internal
21 parameter whose value is to be retrieved.
22
23 CVAL (an output variable of type CHARACTER) is the name of a
24 variable into which the value of the internal parameter
25 specified by PNAM is to be retrieved.
26
28 The C-binding argument descriptions are the same as the FORTRAN
29 argument descriptions with the following exception:
30
31
32 len The size of cval as dimensioned in the calling program.
33
35 This routine allows you to retrieve the current value of Gridall
36 parameters. For a complete list of parameters available in this
37 utility, see the gridall_params man page.
38
40 To use GAGETC or c_gagetc, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order.
42
44 See the gridall man page for a description of all Gridall error
45 messages and/or informational messages.
46
48 Online: gridall, gridall_params, gacolr, gageti, gagetr, gasetc,
49 gaseti, gasetr, grid, gridal, gridl, halfax, labmod, perim, periml,
50 tick4, ticks, ncarg_cbind.
51
52 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
53
55 Copyright (C) 1987-2007
56 University Corporation for Atmospheric Research
57
58 This documentation is free software; you can redistribute it and/or
59 modify it under the terms of the GNU General Public License as
60 published by the Free Software Foundation; either version 2 of the
61 License, or (at your option) any later version.
62
63 This software is distributed in the hope that it will be useful, but
64 WITHOUT ANY WARRANTY; without even the implied warranty of
65 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
66 General Public License for more details.
67
68 You should have received a copy of the GNU General Public License along
69 with this software; if not, write to the Free Software Foundation,
70 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
71
72
73
74UNIX March 1993 GAGETC(3NCARG)