Usage Note 23339: Can I uppercase the procedure title in ODS output?
The procedure title can be uppercased or lowercased by using the Text-transform
style property within the style element Proctitle.
proc template;
define style styles.test;
parent=styles.default;
style proctitle from proctitle /
pretext='<div style="text-transform:uppercase">'
posttext='</div>';
end;
run;
ods html body='temp.html' style=styles.test;
proc univariate data=sashelp.class;
title 'uppercasing proc title ';
run;
ods html close;
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
|
| Date Modified: | 2007-10-03 10:45:02 |
| Date Created: | 2003-08-07 17:23:09 |