Date: Fri, 26 Mar 2010 03:43:58 -0400
Reply-To: Søren Lassen <s.lassen@POST.TELE.DK>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Søren Lassen <s.lassen@POST.TELE.DK>
Subject: Re: ODS HTML column width and TEMPLATE
Content-Type: text/plain; charset=ISO-8859-1
Kevin,
Not quite sure about how to accomplish this with templates etc,
I do it with escapechar instead - but if you want some text
in courier and not flowed in HTML, you should try the <pre> and
</pre> tags - they will do the trick.
Regards,
Søren
On Tue, 23 Mar 2010 15:35:11 -0400, Kevin Viel <citam.sasl@GMAIL.COM> wrote:
>I have three columns in my HTML output of length 100, 200, and 2500. The
>data in the second column are being forced to flow over several lines,
>which I do not want. Perusing the TEMPLATE documentation, it seems that I
>might use FORMAT_WIDTH. However, I also change the font to Courier:
>
>
>Proc Template ;
> Define Style monospace ;
> Parent = Styles.Default ;
> Replace fonts / "TitleFont2" = ( "Courier" , 2 )
> "TitleFont" = ( "Courier" , 2 )
> End ;
>Run ;
>
>ODS HTML File = "A.HTML:
> Style = monospace
> ;
>
>It is not clear to me how I might accomplish this. Defining a TABLE might
>work, but I am not sure how to tell the ODS HTML statement to use it. I
>appreciate any advice.
>
>Thank you,
>
>Kevin
|