1STGETI(3NCARG) NCAR GRAPHICS STGETI(3NCARG)
2
3
4
6 STGETI - Gets the current value of an internal parameter of type
7 INTEGER.
8
10 CALL STGETI (CNM,IVL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_stgeti(char *cnm, int *ivl)
16
18 CNM (CHARACTER, input) is the name of a parameter whose integer
19 value is to be retrieved. Only the first three characters
20 of CNM are examined. The three characters must either be
21 entirely upper or entirely lower case; mixed case is not
22 recognized. It is recommended that the rest of the
23 character string be used to improve the readability of the
24 code. For example, instead of just ´PLR´, use ´PLR - Polar
25 Input Mode´.
26
27 IVL (INTEGER, output) is a variable in which the value of the
28 parameter specified by CNM is to be returned.
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 value of Streamlines
36 parameters of type INTEGER. For a complete list of parameters available
37 in this utility, see the streamlines_params man page.
38
40 To use STGETI or c_stgeti, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order.
42
44 See the streamlines man page for a description of all Streamlines error
45 messages and/or informational messages.
46
48 Online: stgetc, stgetr, stinit, stream, streamlines,
49 streamlines_params, strset, stsetc, stseti, stsetr, stuixy, stumsl,
50 stumta, stumxy, 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 April 1993 STGETI(3NCARG)