|
Thank you.
Do you know how to change the color of the words (eg change "All
Divisions" from black to blue)?
I tried "color" but that didn't work.
Thanks again.
Quoting Ya Huang <ya.huang@AMYLIN.COM>:
> Try linkcolor:
>
> ods pdf text = "^S={&TOCfmt LINKCOLOR=black URL='#line'}All Divisions";
>
>
> On Fri, 26 Jun 2009 11:44:27 -0700, J M <jasonm@UCLA.EDU> wrote:
>
>> The following code creates a hyperlink with a blue box around the
> hyperlink:
>> %let TOCfmt = %str(JUST=LEFT VJUST=MIDDLE FONT_SIZE=14PT
>> CELLHEIGHT=24PT CELLWIDTH=15CM);
>> proc print data=sashelp.class(keep=Name where=(Name eq 'Carol')) noobs
>> /*turns off the observation count column */
>> style = [rules=none frame=void cellspacing=0] /* turns off the
> table grid*/
>> style(header) = [foreground=white background=white] /*invisible
>> column heading*/
>> style(data) = [foreground=white background=white]; /* invisible
> data cell */
>> run;
>> ods pdf text = "^S={&TOCfmt URL='#line'}All Divisions";
>>
>> Does anyone know how to remove or modify the blue box that is created
>> in the PDF document?
>> Thanks,
>> Jason
>
|