1SFGETI(3NCARG) NCAR GRAPHICS SFGETI(3NCARG)
2
3
4
6 SFGETI - Used to retrieve the current integer value of a specified
7 parameter.
8
10 CALL SFGETI (CNP, IVP)
11
13 #include <ncarg/ncargC.h>
14
15 void c_sfgeti (char *cnp, int *ivp)
16
18 CNP (an input expression of type CHARACTER) is one of the
19 character strings 'AN', 'CH', 'DO', 'SP', or 'TY' (or a
20 longer string beginning with one of these strings), meaning
21 "ANgle", "CHaracter", "DOts", "SPacing", and "TYpe",
22 respectively.
23
24 IVP (an output variable of type INTEGER) is the name of a
25 variable into which the value of the parameter specified by
26 CNP is to be retrieved. If the internal parameter is
27 inherently a real value "r", "INT(r)" will be returned as
28 the value of IVP.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 This routine allows you to retrieve the current integer value of
36 Softfill parameters. For a complete list of parameters available in
37 this utility, see the softfill_params man page.
38
40 To use SFGETI or c_sfgeti, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order.
42
44 See the softfill man page for a description of all Softfill error
45 messages and/or informational messages.
46
48 Online: softfill, softfill_params, sfgetc, sfgetp, sfgetr, sfsetc,
49 sfseti, sfsetp, sfsetr, sfsgfa, sfwrld, ncarg_cbind
50
51 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
52
54 Copyright (C) 1987-2007
55 University Corporation for Atmospheric Research
56
57 This documentation is free software; you can redistribute it and/or
58 modify it under the terms of the GNU General Public License as
59 published by the Free Software Foundation; either version 2 of the
60 License, or (at your option) any later version.
61
62 This software is distributed in the hope that it will be useful, but
63 WITHOUT ANY WARRANTY; without even the implied warranty of
64 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
65 General Public License for more details.
66
67 You should have received a copy of the GNU General Public License along
68 with this software; if not, write to the Free Software Foundation,
69 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
70
71
72
73
74UNIX March 1993 SFGETI(3NCARG)