Usage Note 24031: In ODS RTF, how can I remove all of the shading and the bolding while maintaining the grid lines?
The shading and the bolding can be removed by applying the
style template STYLES.MINIMAL, which is one of the default style templates
shipped with SAS; see example 1.
This can also be done by using the style template
STYLES.RTF and modifying the Style element HeaderAndFooters;
see example 2. View output.
/* Example 1. using STYLES.MINIMAL */
ods rtf body='c:\test\temp.rtf' style=styles.minimal;
proc print data=sashelp.class;
run;
ods rtf close;
/* Example 2. Modifying STYLES.RTF */
proc template;
define style styles.test;
parent=styles.rtf;
replace headersandfooters from cell;
end;
run;
ods rtf body='c:\temp.rtf' style=styles.test;
proc print data=sashelp.class;
run;
ods rtf close;
See more information about
PROC TEMPLATE and the RTF destination.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Usage Note |
Priority: | low |
Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> RTF
|
Date Modified: | 2004-06-29 17:37:30 |
Date Created: | 2004-06-25 16:26:06 |