/* The following SAS program may be used to create a driver (PHASR340) which will support the Tektronix Phaser 340 printer. It is assumed that the new driver entry will be stored in the SASHELP.DEVICES catalog. If you do not have update access to this catalog, create the driver entry in your own catalog, GDEVICE0.DEVICES. You may do this by uncommenting the LIBNAME statement below and changing SASHELP to GDEVICE0 on the PROC GDEVICE statement. NOTE: THIS CODE IS FOR USE WITH RELEASE 6.08 AND ABOVE OF SAS/GRAPH SOFTWARE. */ *libname gdevice0 'your.sas.library'; proc gdevice c=SASHELP.devices nofs; copy pscolor from=sashelp.devices newname=PHASR340; mod PHASR340 des='Tektronix Phaser 340 Color Printer' hsize=8.0 vsize=10.25 horigin=.25 vorigin=.40 prows=83 pcols=80 prompt=0 gprolog='04'x gepilog='04'x ; run; quit;