Chapter Contents |
Previous |
Next |
The GREPLAY Procedure |
Procedure features: |
| |||||||
Sample library member: | GR26N01 |
This example creates a template with five panels. Four of the panels are small and equal in size. The fifth panel is a large, full-size panel that can be used later to display a common title or footnote for the entire template (see ). In this example, the LIST statement displays the template contents in the log. Defining a Template (GR26N01) shows the template definition that is written to the log file. The template that is defined here is also used in Replaying Graphics Output in a Template.
libname reflib 'SAS-data-library'; goptions reset=global gunit=pct border cback=white colors=(black blue green red) ftext=swissb htitle=6 htext=3 |
proc greplay tc=reflib.tempcat nofs; |
template newtemp; |
list template; quit; |
. . . 64 /* list contents of current template */ 65 list template; NEWTEMP Five panel template Pan Clp Color Ll-x Ll-y Ul-x Ul-y Ur-x Ur-y Lr-x Lr-y 1 BLUE 0.0 10.0 0.0 50.0 50.0 50.0 50.0 10.0 2 RED 0.0 50.0 0.0 90.0 50.0 90.0 50.0 50.0 3 GREEN 50.0 50.0 50.0 90.0 100.0 90.0 100.0 50.0 4 CYAN 50.0 10.0 50.0 50.0 100.0 50.0 100.0 10.0 5 LIPK 0.0 0.0 0.0 100.0 100.0 100.0 100.0 0.0 66 quit; . . . |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.