1TDSETI(3NCARG) NCAR GRAPHICS TDSETI(3NCARG)
2
3
4
6 TDSETI - Provides a new integer value for a Tdpack parameter.
7
9 CALL TDSETI (PNAM,IVAL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_tdseti (char *pnam, int ival)
15
17 The arguments of TDSETI are as follows:
18
19 PNAM (an input constant or variable of type CHARACTER) - The name of
20 the parameter that you want to set. The character string can be
21 of any length, but only the first three characters of it will
22 be examined.
23
24 IVAL (an input expression of type INTEGER) - The integer value you
25 select for the parameter. If the parameter is of type INTEGER,
26 it will be given the value IVAL; if is is of type REAL, it will
27 be given the value REAL(IVAL).
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 This routine allows you to set the current value of Tdpack parameters.
35 For a complete list of parameters available in this utility, see the
36 "tdpack_params" man page.
37
39 To use TDSETI or c_tdseti, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the "tdpack" man page for a description of all Tdpack error
44 messages and/or informational messages.
45
47 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgrid, tdgtrs,
48 tdinit, tditri, tdlbla, tdlbls, tdline, tdlnpa, tdmtri, tdotri, tdpack,
49 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdsetr, tdsort,
50 tdstri, tdstrs
51
53 Copyright (C) 1987-2007
54 University Corporation for Atmospheric Research
55
56 This documentation is free software; you can redistribute it and/or
57 modify it under the terms of the GNU General Public License as
58 published by the Free Software Foundation; either version 2 of the
59 License, or (at your option) any later version.
60
61 This software is distributed in the hope that it will be useful, but
62 WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
64 General Public License for more details.
65
66 You should have received a copy of the GNU General Public License along
67 with this software; if not, write to the Free Software Foundation,
68 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
69
70
71
72UNIX July 1997 TDSETI(3NCARG)