Date: Fri, 18 Sep 2009 12:15:39 -0400
Reply-To: Ya Huang <ya.huang@AMYLIN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ya Huang <ya.huang@AMYLIN.COM>
Subject: Re: ODS RTF TEXT
As far as I know, the only real "Body" part text from ODS/rtf is the
title text when bodytitle options is used. The following gives an
example. Data step is used to trigger ODS, since title statement alone
will not run. Of course, you don't have much control where the title
line would be.
ods rtf file="c:\temp\junk.rtf" bodytitle;
title "text without a box";
data _null_;
file print;
put 'A0'x;
run;
ods rtf close;
On Fri, 18 Sep 2009 09:13:22 +0200, Majd Mirza <majood@MAJDMIRZA.COM> wrote:
>Hello all,
>
>Do you know if there is anyway you can output text to a RTF document
without
>having the text put in a table?
>
>i'm doing something like:
>
>ods rtf;
>..
>ods text="Hello, world!";
>
>...
>
>ods rtf close;
>
>The text "Hello, world!" is put inside a table cell in the RTF document,
and
>i want it as plain text, is that possible?
>
>
>Best regards,
>
>Majd
|