Valid in: | Anywhere |
Category: | ODS: Output Control |
Restrictions: | The ODS USEGOPTS option has no effect on graphics produced
as a result of any of the ODS graphics functionality or the ODS GRAPHICS
statement.
The ODS USEGOPTS option only affects the titles and footnotes for tables, not the contents of the table. |
See: | SAS/GRAPH: Reference |
Features: |
ODS HTML statement option:: FILE= ODS LISTING statement action:: CLOSE ODS NOUSEGOPT statement ODS USEGOPT statement |
Other features: |
PROC PRINT TITLE statement |
Data set: | Exprev |
goptions reset=all htext=2 ftitle=script ftext=script;
ods usegopt;
ods html file='opts.html'; title 'This Title Was Created With the USEGOPT Option Specified ' ; title2 'The Graphics Option Settings are Turned On'; proc print data=exprev(obs=2); run;
ods nousegopt;
title 'This Title Was Created With the NOUSEGOPT Option Specified' ; title2 'The Graphics Option Settings are Turned Off'; proc print data=exprev (obs=2) ; run;
ods html file='opts.html'; title 'This Title Was Created With the USEGOPT Option Specified ' ; title2 'The Graphics Option Settings are Turned On'; proc print data=exprev(obs=2); run;