Listing or Displaying SAS/GRAPH Fonts on Your System

The SASHELP.FONTS catalog contains information about the fonts available on your system. To list the SAS/GRAPH fonts that can be used in your application, submit the following SAS code:
proc catalog catalog=sashelp.fonts entrytype=font;
   contents out=work.swfonts(keep=name);
run;
quit;
data work.swfonts;
   set work.swfonts;
   if name =:'HW' then delete;
run;
proc print data=work.swfonts;
run;
You can display these fonts with the GFONT procedure. See Displaying Fonts with Character Codes.