Previous Page | Next Page

The GOPTIONS Procedure

Example 1: Displaying TITLE and FOOTNOTE Statements


Procedure features:

PROC GOPTIONS statement:

FOOTNOTE

NOLIST

Sample library member: GOPTIFT

This example uses the FOOTNOTE option to display the current definitions of both the FOOTNOTE and TITLE statements. It also uses the NOLIST option to suppress the list of graphics options. Using the NOLIST Option (GOPTIFT) shows the listing that appears in the LOG window.

Using the NOLIST Option (GOPTIFT)

TITLE1 HEIGHT=6 COLOR=BLUE FONT=SWISSB "Production Quality" ;
TITLE2 HEIGHT=4 COLOR=BLUE FONT=SWISSB "January through June";

FOOTNOTE1 HEIGHT=3 COLOR=GREEN FONT=SWISS "Data from SASDATA.QUALITY" ;

FOOTNOTE2 HEIGHT=3 COLOR=GREEN FONT=SWISS "* denotes approximations" ;
 Note about code
goptions reset=all;
 Note about code
title1 h=6 c=blue f=swissb "Production Quality";
title2 h=4 c=blue f=swissb "January through June";
footnote1 h=3 c=green f=swiss "Data from SASDATA.QUALITY";
footnote2 h=3 c=green f=swiss "* denotes approximations";
 Note about code
proc goptions nolist footnote;
run;

Previous Page | Next Page | Top of Page