Previous Page | Next Page

The GREPLAY Procedure

Example 2: Replaying GSLIDE Procedure Output in a Template


Procedure features:

GREPLAY statement options:

GOUT= option

IGOUT= option

TEMPLATE= option

TREPLAY statement

Other features:

PROC GSLIDE

Sample library member: GRERGOT1

The TREPLAY statement replays into the template GRFTMPLT, the four catalog entries that contain graphics output. It contains four equally sized panels, and one large, full-size panel. Note that assignments are made to all but one panel. Because the fourth panel is not listed in the TREPLAY statement, it does not appear in the graphics output. The HSIZE= option, and the VSIZE= option are adjusted, to reflect the overall output dimension. Alternatively, you could use XPIXELS= and YPIXELS= to adjust the graphics output size.

Replayed Output in a Graphics Template (grergot1)

[Greplay]

 Note about code
goptions reset=all border hsize=5.14in vsize=4.13in;
 Note about code
proc gslide gout=grafcat;
   title c=navy "Graph Number Three";
run;
   title c=lime "Graph Number One";
run;
   title c=orange "Graph Number Two";
run;
 
 Note about code
proc gslide gout=grafcat;
   title c=purple "Common Title";
   footnote c=blue "Common Footnote";
run;
 Note about code
proc greplay igout=grafcat gout=excat tc=tempcat nofs;
   template=newtemp;
 Note about code
   treplay 1:gslide
           2:gslide1
           3:gslide2
           5:gslide3;
         quit;

Previous Page | Next Page | Top of Page