Generate and display the font FIGURES.
The DATA= argument names the input data set that is used to generate the font.
The NAME= argument names the font that the procedure generates and automatically
stores it in the GFONT0 catalog. (Note that you do not need to specify GFONT0.)
FILLED specifies a filled polygon font. CTEXT= specifies the color of the
figures in the font display. The color specification is not stored with the
font. RESOL= is set to 2 to improve the resolution of the lines. By default,
the newly generated font is displayed (the NODISPLAY option is not used).
proc gfont data=reflib.figures
name=figures
filled
height=.75in
ctext=red
showroman
romht=.5in
resol=2;
run;
quit;