1VVGETI(3NCARG) NCAR GRAPHICS VVGETI(3NCARG)
2
3
4
6 VVGETI - Gets the current value of a Vectors parameter of type INTEGER.
7
9 CALL VVGETI (CNM,IVL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_vvgeti(char *cnm, int *ivl)
15
17 CNM (CHARACTER, input) is the name of a parameter whose integer
18 value is to be retrieved. Only the first three characters
19 of CNM are examined. The three characters may either be
20 entirely upper or entirely lower case; mixed case is not
21 recognized. It is recommended that the rest of the
22 character string be used to improve the readability of the
23 code. For example, instead of just ´PLR´, use ´PLR - Polar
24 Input Mode´.
25
26 IVL (INTEGER, output) is a variable in which the value of the
27 parameter specified by CNM is to be returned.
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 Vectors
35 parameters of type INTEGER. For a complete list of parameters
36 available in this utility, see the vectors_params man page.
37
39 To use VVGETI or c_vvgeti, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the vectors man page for a description of all Vectors error
44 messages and/or informational messages.
45
47 Online: vectors, vectors_params, vvectr, vvgetc, vvgetr, vvinit,
48 vvrset, vvsetc, vvseti, vvsetr, vvudmv, vvumxy, ncarg_cbind.
49
50 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
51
53 Copyright (C) 1987-2009
54 University Corporation for Atmospheric Research
55 The use of this Software is governed by a License Agreement.
56
57
58
59UNIX April 1993 VVGETI(3NCARG)