Usage Note 24022: In ODS RTF, how can I modify the foreground colors of the document?
The foreground colors can be modified by replacing the argument associated with
the string 'fg'. View output.
proc template;
define style styles.newrtf;
parent=styles.RTF;
replace color_list
"Colors used in the default style" /
'link'= blue
'bgH'= white
/*'fg' = black */
'fg' = blue
'bg' = white;
end;
run;
ods rtf body='rc3.rtf' style=styles.newrtf;
proc freq data=sashelp.class;
title 'modifying the foreground color';
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 16:22:19 |
| Date Created: | 2004-06-25 11:41:55 |