1AGGETI(3NCARG) NCAR GRAPHICS AGGETI(3NCARG)
2
3
4
6 AGGETI - Allows a user program to retrieve the integer equivalent of
7 the real value of a single parameter.
8
10 CALL AGGETI (TPGN,IUSR)
11
13 #include <ncarg/ncargC.h>
14
15 void c_aggeti (char *tpgn, int *iusr)
16
18 TPGN (an input expression of type CHARACTER) is a parameter
19 identifier, as described for AGGETP, above. If a group of
20 more than one parameter is specified, only the first
21 element of that group will be retrieved by the call.
22
23 IUSR (an output variable of type INTEGER) receives the integer
24 equivalent of the real value of the parameter specified by
25 TPGN.
26
28 The C-binding argument description is the same as the FORTRAN argument
29 description.
30
32 This routine allows you to retrieve the current value of Autograph
33 parameters. For a complete list of parameters available in this
34 utility, see the autograph_params man page.
35
37 To use AGGETI or c_aggeti, load the NCAR Graphics libraries ncarg,
38 ncarg_gks, and ncarg_c, preferably in that order. To get smoother
39 curves, drawn using spline interpolation, also load libdashsmth.o. Or,
40 you can use the ncargf77 command to compile your program and load the
41 above libraries, then, to get smoother curves, use the -dashsmth
42 option.
43
45 Online: autograph, autograph_params, agback, agbnch, agchax, agchcu,
46 agchil, agchnl, agcurv, agdshn, aggetc, aggetf, aggetp, aggetr, agpwrt,
47 agrstr, agsave, agsetc, agsetf, agseti, agsetp, agsetr, agstup, agutol,
48 anotat, displa, ezmxy, ezmy, ezxy, ezy
49
50 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
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 AGGETI(3NCARG)