Using SAS/GRAPH Fonts |
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.
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.