GSLIDE Procedure

Example 1: Producing Text Slides

Features:

PROC GSLIDE options BORDER, CFRAME=, and WFRAME=

Other features:

NOTE Statement

Sample library member: GSLTEXTS
This example uses FOOTNOTE, NOTE, and TITLE statements to produce a text slide. PROC GSLIDE statement options add both a border and a frame.
Output from GSLIDE example GSLTEXTS - Producing Text Slides

Program

goptions reset=all cback=blue
           border;
title color=red "New Directions";
footnote1 j=l " ABC Engineering, Inc";
footnote2 j=l " January 2011" ;
proc gslide border
    cframe=red
    wframe=4;
    note height=14;
    note height=5
       justify=center 
       color="white" 
       "Goals and strategies"
       justify=center 
       "for the coming year";
run;
quit;

Program Description

Set the graphics environment.
goptions reset=all cback=blue
           border;
Define titles and footnotes.
title color=red "New Directions";
footnote1 j=l " ABC Engineering, Inc";
footnote2 j=l " January 2011" ;
Generate the slide and define additional text. The BORDER option draws a box around the entire graphics output area. The CFRAME= option draws a red box around the procedure output area. The WFRAME= option specifies the thickness of the frame. The COLOR= option specifies the color of the note text. The first NOTE statement, which has no text, simply leaves a large blank line above the text specified by the second NOTE statement. The second JUSTIFY= option causes a line break.
proc gslide border
    cframe=red
    wframe=4;
    note height=14;
    note height=5
       justify=center 
       color="white" 
       "Goals and strategies"
       justify=center 
       "for the coming year";
run;
quit;