
Using a Fileref with PROC FONTREG
You can use a fileref with the FONTPATH, TRUETYPE, TYPE1, and OPENTYPE
statements in PROC FONTREG, if you first define a filename. The following examples
show how a fileref is used:
filename fonts1 'c:\windows\fonts';
proc fontreg mode=all;
fontpath fonts1;
run;
proc fontreg mode=all;
truetype fonts1;
run;
The ability to use a fileref enables you to directly use the FILENAME statement and its
features. For example, you can register available fonts by using a URL. With fileref
support, you would use a FILENAME statement and a PROC FONTREG step.
Font Aliases and Locales
The FONTFILE, FONTPATH, TRUETYPE, and OPENTYPE statements ...