| Date: | Fri, 8 Feb 2008 09:26:45 -0500 |
| Reply-To: | "Audimar P. Bangi" <audi@SAS2THEMAX.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Audimar P. Bangi" <audi@SAS2THEMAX.COM> |
| Organization: | sas2themax.com |
| Subject: | Re: ODS PDF bug fixed in 9.1.3? |
|
| In-Reply-To: | <75e248f3-592f-4739-a719-9d7ae0e4e75d@i12g2000prf.googlegroups.com> |
| Content-Type: | text/plain; format=flowed; charset="iso-8859-1";
reply-type=original |
No, Roland, the header line is NOT underlined on pages 2 and 3, unlike on
page 1.
SAS verion: SAS 9.1.3 Service Pack 4
Audi
----- Original Message -----
From: "RolandRB" <rolandberry@HOTMAIL.COM>
To: <SAS-L@LISTSERV.UGA.EDU>
Sent: Friday, February 08, 2008 8:47 AM
Subject: ODS PDF bug fixed in 9.1.3?
> Please somebody, run this code in version 9.1.3 of SAS and tell me if
> the header line is underlined on pages 2 and 3 like it is on page 1.
> Output will go to the destination stated in the log but it should open
> in a window in any case.
>
>
> options ls=max ps=20;
>
> proc template;
> define style styles.fixeddocPrinter2;
> parent = styles.printer;
> replace HeadersAndFooters from Cell /
> font = fonts("HeadingFont");
> style Table from Output /
> background = _undef_
> frame = HSIDES
> rules = GROUPS
> cellpadding = 4pt
> cellspacing = 0.75pt;
> end;
> run;
>
> ods pdf file="testpdf.pdf" style=fixeddocPrinter2;
> ods listing close;
> proc print data=sashelp.company;
> run;
> ods listing;
> ods pdf close;
>
|