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-2009
56 University Corporation for Atmospheric Research
57 The use of this Software is governed by a License Agreement.
58
59
60
61UNIX April 1993 STGETI(3NCARG)