Usage Note 23466: How can I prevent my readers from printing a confidential ODS HTML document?
Specify the style sheet property DISPLAY:NONE with the
@media rule
in order
to prevent readers from printing the tables and graphs. Here is an
example.
ods html body='temp.html'
headtext='<style type="text/css">
@media print {body {display:none}}</style>';
proc print data=sashelp.class;
run;
ods html close;
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: | System Administration ==> Printing SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2003-12-23 16:09:27 |
| Date Created: | 2003-10-08 12:00:08 |