/* The following SAS program may be used to create an HPXL300B driver which will support 11 x 17 inch (B-size) paper on the HP PaintJet XL300 printer. It is assumed that the new 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 hpxl300 from=sashelp.devices newname=hpxl300b; mod hpxl300b des='HP XL300--HPGL2--B Size' xmax=17.0 ymax=11.0 xpixels=17272 ypixels=11176 hsize=16.5 vsize=10.5 horigin=0.25 vorigin=0.25 ; run; quit;