LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: Majd Mirza <majood@MAJDMIRZA.COM>

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


Back to: Top of message | Previous page | Main SAS-L page