Chapter Contents |
Previous |
Next |
The GDEVICE Procedure |
Procedure features: |
| ||
Other features: |
| ||
Sample library member: | GR15N01 |
This example permanently changes the default colors list for the PSCOLOR device entry. The contents of the original PSCOLOR entry are shown in Sample Device Entry Listing Generated in Program Mode. The new device entry is illustrated in the PROC GTESTIT output above.
libname gdevice0 'SAS-data-library'; |
proc gdevice nofs catalog=gdevice0.devices; |
copy pscolor from=sashelp.devices newname=mypscol; |
modify mypscol description='PSCOLOR with new colors list' colors=(black blue green red gray cyan lime lipk); |
quit; |
goptions target=mypscol; proc gtestit pic=1; run; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.