1ARGETI(3NCARG) NCAR GRAPHICS ARGETI(3NCARG)
2
3
4
6 ARGETI - Retrieves the integer value of an Areas parameter.
7
9 CALL ARGETI (PNAM,IVAL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_argeti (char *pnam, int *ival)
15
17 PNAM (an input constant or variable of type CHARACTER) - The
18 name of the parameter that you want to retrieve. The
19 character string can be of any length, but only the first
20 two characters of it will be examined.
21
22 IVAL (an output variable of type INTEGER) - An integer variable
23 to receive the desired parameter value. If the internal
24 parameter is of type INTEGER and has the value "i", IVAL
25 will be given the value "i"; if the internal parameter is
26 of type REAL and has the value "r", IVAL will be given the
27 value "INT(r)".
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 This routine allows you to retrieve the current value of Areas
35 parameters. For a complete list of parameters available in this
36 utility, see the areas_params man page.
37
39 To use ARGETI or c_argeti, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the areas man page for a description of all Areas error messages
44 and/or informational messages.
45
47 Online: areas, areas_params, ardbpa, ardrln, aredam, argetr, argtai,
48 arinam, armvam, arpram, arscam, arseti, arsetr, ncarg_cbind
49
50 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
51
53 Copyright (C) 1987-2007
54 University Corporation for Atmospheric Research
55
56 This documentation is free software; you can redistribute it and/or
57 modify it under the terms of the GNU General Public License as
58 published by the Free Software Foundation; either version 2 of the
59 License, or (at your option) any later version.
60
61 This software is distributed in the hope that it will be useful, but
62 WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
64 General Public License for more details.
65
66 You should have received a copy of the GNU General Public License along
67 with this software; if not, write to the Free Software Foundation,
68 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
69
70
71
72UNIX March 1993 ARGETI(3NCARG)