Previous Page | Next Page

The GSLIDE Procedure

Example 1: Producing Text Slides


Procedure features:

PROC GSLIDE options:

BORDER

CFRAME=

WFRAME=

Other features: NOTE Statement
Sample library member: GSLTEXTS

[Output from GSLIDE example GSLTEXTS - Producing Text Slides]

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=all cback=blue
           border;
 Note about code
title color=red "New Directions";
footnote1 j=l " ABC Engineering, Inc";
footnote2 j=l " January 1998" ;
 Note about code
proc gslide border
            cframe=red
            wframe=4;
   note height=5;
   note height=3
        justify=center 
                       color="white" 
                      "Goals and strategies"
        justify=center 
                      "for the coming year";
run;
quit;

Previous Page | Next Page | Top of Page