Chapter Contents

Previous

Next
The GSLIDE Procedure

Example 1: Producing Text Slides


Procedure features:
PROC GSLIDE options:
BORDER
CFRAME=
WFRAME=
Other features:
NOTE statement
Sample library member: GR27N01

[IMAGE]

This example uses FOOTNOTE, NOTE, and TITLE statements to produce a text slide. PROC GSLIDE statement options add both a border and a frame.
 Note about code
goptions reset=global gunit=pct cback=blue
         colors=(white) ftext=swissb htitle=12 htext=4;
 Note about code
title color=pink 'New Directions';
footnote1 j=l ' ABC Engineering, Inc';
footnote2 j=l ' January 1998'
          j=r h=3 f=swiss 'GR27N01 ';
 Note about code
proc gslide border
            cframe=red
            wframe=4;
   note height=20;
   note height=10
        justify=center 'Goals and strategies'
        justify=center 'for the coming year';
run;
quit;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.