Usage Note 23450: I would like to modify the ODS style by only specifying the value
that I want to modify. I want the resulting template to be the default.
There are two ways to do this. One way is to use PROC TEMPLATE
with the SOURCE statement and the FILE= option to save the template
source code to a file. This file can then be included and the changes
to the code can be recompiled. Another way is to use the EDIT
statement. This is supported beginning in Version 8. Below is the syntax
for both approaches.
/* example 1 */
proc template;
source styles.default / file=file;
run;
/* example 2 */
proc template;
edit styles.default;
style Fonts /
‘docfont’=(arial,1);
end;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
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 ==> HTML Third Party ==> Output ==> PDF Third Party ==> Output ==> Postscript Third Party ==> Output ==> RTF Data Management ==> Administration
|
| Date Modified: | 2007-10-04 14:47:18 |
| Date Created: | 2003-09-30 12:00:50 |