| Dictionary of ODS Language Statements |
Determines whether or not ODS uses graphics option settings.
| Valid: |
anywhere
|
| Category: |
ODS: Output Control
|
| See also: |
SAS/GRAPH Software: Reference, Volumes 1 and 2
|
-
ODS USEGOPT
-
specifies that ODS use graphics option settings
for non-graphical
output.
-
ODS
NOUSEGOPT
-
specifies that ODS not use graphics option
settings for non-graphical output.
While
ODS USEGOPT is in effect, the settings for the following graphics options
will affect all of your ODS output, including tables:
|
CTEXT= |
|
CTITLE= |
|
FTITLE= |
|
FTEXT= |
|
HTEXT= |
|
HTITLE= |
If ODS NOUSEGOPT is in
effect, the settings for these graphics
options will not override the value in the style definition for titles and
footnotes in your ODS output.
|
ODS features:
|
ODS HTML statement:
|
|
ODS LISTING statement:
|
|
ODS NOUSEGOPT statement |
|
ODS USEGOPT
statement | |
|
Other SAS features:
|
GOPTIONS statement:
|
|
PROC
PRINT |
|
TITLE statement | |
|
Data
set:
Exprev |
This
example creates two HTML reports, one with the GOPTIONS enabled by using the
ODS USEGOPT statement, and one with GOPTIONS disabled by using the ODS NOUSEGOPT
statement.
 |
goptions reset=all htext=2 ftitle=script ftext=script; |
 |
ods listing close; |
 |
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 close;
ods listing; |
HTML Output
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.