1VVSETI(3NCARG) NCAR GRAPHICS VVSETI(3NCARG)
2
3
4
6 VVSETI - Sets the value of a Vectors parameter of type INTEGER.
7
9 CALL VVSETI (CNM,IVL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_vvseti(char *cnm, int ivl)
15
17 CNM (CHARACTER, input) is the name of a parameter to be given
18 an integer value. Only the first three characters of CNM
19 are examined. The three characters may either be entirely
20 upper or entirely lower case; mixed case is not recognized.
21 It is recommended that the rest of the character string be
22 used to improve the readability of the code. For example,
23 instead of ´VPO´, use ´VPO - Vector Positioning Mode´.
24
25 IVL (INTEGER, input) is an expression, the value of which is to
26 be given to the parameter specified by CNM.
27
29 The C-binding argument descriptions are the same as the FORTRAN
30 argument descriptions.
31
33 This routine allows you to set the current value of Vectors parameters
34 of type INTEGEER. For a complete list of parameters available in this
35 utility, see the vectors_params man page.
36
38 Use the ncargex command to see the following relevant examples: bnchmk,
39 fcover, ffex00, ffex02, ffex05, stex02, stex03, vvex01, vvex02.
40
42 To use VVSETI or c_vvseti, load the NCAR Graphics libraries ncarg,
43 ncarg_gks, and ncarg_c, preferably in that order.
44
46 See the vectors man page for a description of all Vectors error
47 messages and/or informational messages.
48
50 Online: vectors, vectors_params, vvectr, vvgetc, vvgeti, vvgetr,
51 vvinit, vvrset, vvsetc, vvsetr, vvudmv, vvumxy, ncarg_cbind.
52
53 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
54
56 Copyright (C) 1987-2007
57 University Corporation for Atmospheric Research
58
59 This documentation is free software; you can redistribute it and/or
60 modify it under the terms of the GNU General Public License as
61 published by the Free Software Foundation; either version 2 of the
62 License, or (at your option) any later version.
63
64 This software is distributed in the hope that it will be useful, but
65 WITHOUT ANY WARRANTY; without even the implied warranty of
66 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
67 General Public License for more details.
68
69 You should have received a copy of the GNU General Public License along
70 with this software; if not, write to the Free Software Foundation,
71 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
72
73
74
75UNIX April 1993 VVSETI(3NCARG)