1DPGETR(3NCARG) NCAR GRAPHICS DPGETR(3NCARG)
2
3
4
6 DPGETR - Retrieves the real value of an internal parameter of type REAL
7 or INTEGER.
8
10 CALL DPGETR (PNAM,RVAL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_dpgetr (char *pnam, float *rval)
16
18 PNAM (an input expression of type CHARACTER) specifies the name
19 of the parameter to get. The name must appear as the first
20 three characters of the string. Other characters may be
21 used to document the use of the parameter being retrieved;
22 for example, instead of just ´LS1´, one can use ´LS1 -
23 LABEL SPACING PARAMETER 1´.
24
25 RVAL (an output variable of type REAL) is the name of the
26 variable into which the value of the internal parameter
27 specified by PNAM is to be retrieved. If the internal
28 parameter is a value "r" of type REAL, the value returned
29 is "r". If the internal parameter is a value "i" of type
30 INTEGER, the value returned is "REAL(i)".
31
33 The C-binding argument descriptions are the same as the FORTRAN
34 argument descriptions.
35
37 This routine allows you to retrieve the current value of Dashpack
38 parameters. For a complete list of parameters available in this
39 utility, see the dashpack_params man page.
40
42 To use DPGETR or c_dpgetr, load the NCAR Graphics libraries ncarg,
43 ncarg_gks, and ncarg_c, preferably in that order.
44
46 See the dashpack man page for a description of all Dashpack error
47 messages and/or informational messages.
48
50 Online: dashpack, dashpack_params, dpcurv, dpdraw, dpfrst, dpgetc,
51 dpgeti, dplast, dpline, dpsetc, dpseti, dpsetr, dpsmth, dpvect,
52 ncarg_cbind.
53
54 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
55
57 Copyright (C) 1987-2007
58 University Corporation for Atmospheric Research
59
60 This documentation is free software; you can redistribute it and/or
61 modify it under the terms of the GNU General Public License as
62 published by the Free Software Foundation; either version 2 of the
63 License, or (at your option) any later version.
64
65 This software is distributed in the hope that it will be useful, but
66 WITHOUT ANY WARRANTY; without even the implied warranty of
67 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
68 General Public License for more details.
69
70 You should have received a copy of the GNU General Public License along
71 with this software; if not, write to the Free Software Foundation,
72 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
73
74
75
76UNIX March 1995 DPGETR(3NCARG)