Previous Page | Next Page

The FONTREG Procedure

Example 1: Adding a Single Font File


Procedure features: FONTFILE statement

This example shows how to add a single font file to the SAS registry.


Program

 Note about code
proc fontreg;
   fontfile 'your-font-file';
run;

Output: SAS Log

NOTE: PROCEDURE PRINTTO used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      
20   proc fontreg;
21      fontfile 'your-font-file';
22   run;
SUMMARY:
  Files processed: 1
  Unusable files: 0
  Files identified as fonts: 1
  Fonts that were processed: 1
  Fonts replaced in the SAS registry: 0
  Fonts added to the SAS registry: 1
  Fonts that could not be used: 0
  Font Families removed from SAS registry: 0

NOTE: PROCEDURE FONTREG used (Total process time):
      real time           0.17 seconds
      cpu time            0.03 seconds

Previous Page | Next Page | Top of Page