1SLSETR(3NCARG) NCAR GRAPHICS SLSETR(3NCARG)
2
3
4
6 SLSETR - Provides a new real value for an internal parameter of
7 Scrolled_title of type INTEGER or REAL. See the scrolled_title_params
8 man page for a complete list of all the Scrolled_title internal
9 parameters.
10
12 CALL SLSETR (PNAM, RVAL)
13
15 #include <ncarg/ncargC.h>
16
17 void c_slsetr (char *pnam, float rval)
18
20 PNAM (an input constant or variable of type CHARACTER) specifies
21 the name of the parameter to be set. Only the first three
22 characters of the string are examined.
23
24 RVAL (an input expression of type REAL) is the desired value of
25 the internal parameter. If the internal parameter is of
26 type INTEGER, it will be given the value INT(RVAL). If the
27 internal parameter is of type REAL, it will be given the
28 value RVAL.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 This routine allows you to set the current value of Scrolled_title
36 parameters. For a complete list of parameters available in this
37 utility, see the scrolled_title_params man page.
38
40 Use the ncargex command to see the following relevant example: slex01.
41
43 To use SLSETR or c_slsetr, load the NCAR Graphics libraries ncarg,
44 ncarg_gks, ncarg_c, and ncarg_c, preferably in that order.
45
47 See the scrolled_title man page for a description of all Scrolled_title
48 error messages and/or informational messages.
49
51 Online: ftitle, scrolled_title, scrolled_title_params, slgeti, slgetr,
52 slogap, slrset, slseti, stitle, ncarg_cbind.
53
54 Hardcopy: NCAR Graphics Fundamentals, UNIX Version; User's Guide for
55 NCAR GKS-0A Graphics
56
58 Copyright (C) 1987-2007
59 University Corporation for Atmospheric Research
60
61 This documentation is free software; you can redistribute it and/or
62 modify it under the terms of the GNU General Public License as
63 published by the Free Software Foundation; either version 2 of the
64 License, or (at your option) any later version.
65
66 This software is distributed in the hope that it will be useful, but
67 WITHOUT ANY WARRANTY; without even the implied warranty of
68 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
69 General Public License for more details.
70
71 You should have received a copy of the GNU General Public License along
72 with this software; if not, write to the Free Software Foundation,
73 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
74
75
76
77UNIX July 1995 SLSETR(3NCARG)