1NGGETC(3NCARG) NCAR GRAPHICS NGGETC(3NCARG)
2
3
4
6 NGGETC - Used to retrieve the current value of a specified internal
7 parameter.
8
10 CALL NGGETC (CNP,CVP)
11
13 #include <ncarg/ncargC.h>
14
15 void c_nggetc (char *cnp, char *cvp, int len)
16
18 CNP (an input expression of type CHARACTER) is the name of an
19 internal parameter of Ngmisc. Only the first two
20 characters of the string are examined.
21
22 CVP (an output variable of type CHARACTER) is the name of a
23 variable into which the value of the parameter specified by
24 CNP is to be retrieved.
25
27 The C-binding argument descriptions are the same as the FORTRAN
28 argument descriptions with the following exception:
29
30 len The size of cvp as dimensioned in the calling program.
31
33 This routine allows you to retrieve the current value of Ngmisc
34 parameters. For a complete list of parameters available in this
35 utility, see the ngmisc_params man page.
36
38 To use NGGETC or c_nggetc, load the NCAR Graphics libraries ncarg,
39 ncarg_gks, and ncarg_c, preferably in that order.
40
42 Online: ngmisc_params, ngsetc, ngseti, nggeti, ngsetr, nggetr,
43 ncarg_cbind.
44
45 Online URL: http://ngwww.ucar.edu/ngdoc/ng/gks/gkshome.html
46
47 Hardcopy: NCAR Graphics Fundamentals, UNIX Version;
48
50 Copyright (C) 1987-2007
51 University Corporation for Atmospheric Research
52
53 This documentation is free software; you can redistribute it and/or
54 modify it under the terms of the GNU General Public License as
55 published by the Free Software Foundation; either version 2 of the
56 License, or (at your option) any later version.
57
58 This software is distributed in the hope that it will be useful, but
59 WITHOUT ANY WARRANTY; without even the implied warranty of
60 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
61 General Public License for more details.
62
63 You should have received a copy of the GNU General Public License along
64 with this software; if not, write to the Free Software Foundation,
65 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
66
67
68
69UNIX April 1994 NGGETC(3NCARG)