Previous Page | Next Page

The GFONT Procedure

Example 1: Displaying Fonts with Character Codes


Procedure features:

GFONT statement options:

HEIGHT=

NOBUILD

ROMCOL=

ROMFONT=

ROMHT=

SHOWROMAN

Sample library member: GFODISFO

[Display of the Greek Font with Character Codes (GFODISFO)]

This illustrates the SHOWROMAN option, which displays the character codes that are associated with the font characters that are being displayed. This display shows which keyboard character you enter to produce the Greek character you want displayed. The example also illustrates how to modify the appearance of both the font characters, and the character codes.

 Note about code
goptions reset=all border;
 Note about code
title "The GREEK Font with Character Codes";
 Note about code
proc gfont name=greek
           nobuild
           height=3.7
           romcol=red
           romfont=swissl
           romht=2.7
           showroman;
run;
quit;

Previous Page | Next Page | Top of Page