1PLGFONT(3plplot) PLplot API PLGFONT(3plplot)
2
3
4
6 plgfont - Get family, style and weight of the current font
7
9 plgfont(p_family, p_style, p_weight)
10
12 Gets information about current font. See the PLplot documentation for
13 more information on font selection.
14
15 Redacted form: plgfont(p_family, p_style, p_weight)
16
17 This function is used in example 23.
18
20 p_family (PLINT *, output)
21 Pointer to variable with the current font family. The available
22 values are given by the PL_FCI_* constants in plplot.h. Current
23 options are PL_FCI_SANS, PL_FCI_SERIF, PL_FCI_MONO,
24 PL_FCI_SCRIPT and PL_FCI_SYMBOL. If p_family is NULL then the
25 font family is not returned.
26
27 p_style (PLINT *, output)
28 Pointer to variable with the current font style. The available
29 values are given by the PL_FCI_* constants in plplot.h. Current
30 options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and PL_FCI_OBLIQUE.
31 If p_style is NULL then the font style is not returned.
32
33 p_weight (PLINT *, output)
34 Pointer to variable with the current font weight. The available
35 values are given by the PL_FCI_* constants in plplot.h. Current
36 options are PL_FCI_MEDIUM and PL_FCI_BOLD. If p_weight is NULL
37 then the font weight is not returned.
38
39
41 Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This
42 man page was automatically generated from the DocBook source of the
43 PLplot documentation, maintained by Alan W. Irwin and Rafael
44 Laboissiere.
45
47 PLplot documentation at http://plplot.sourceforge.net/resources.
48
49
50
51 July, 2010 PLGFONT(3plplot)