Date: Wed, 8 Feb 2012 11:24:50 -0500
Reply-To: Quentin McMullen <qmcmullen.sas@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Quentin McMullen <qmcmullen.sas@GMAIL.COM>
Subject: Control style of URLs in PDF
Content-Type: text/plain; charset=ISO-8859-1
Hi All,
I'm using ODS PDF to create a table, and one of the columns is URLs
(actually internal links). Is there a way I can prevent these cells
from having blue boarders around them? I tried playing with various
style attributes (boardercolor, boarderwidth etc), but couldn't figure
out how to get rid of them. As my table has no boarders, it looks odd
to have one column of cells with boarders. I'd rather just make the
font color blue to indicate that they are links.
ods listing close;
ods pdf file="d:\junk\me.pdf";
proc report data=sashelp.class nowd;
columns name height;
define name /display style={color=blue} ;
define height /display;
compute name;
call define(_col_,'url','www.sas.com');
endcomp;
run;
ods pdf close;
Kind Regahds,
--Quentin
|