Date: Fri, 10 Sep 2010 14:53:19 -0500
Reply-To: mpajoh@ODOT.ORG
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Masoud Pajoh <mpajoh@ODOT.ORG>
Subject: Re: Tab character
In-Reply-To: <AANLkTinUTtkDOMDWN7m3EX1Loh+uBRdh7jkEDO6c4_Wi@mail.gmail.com>
Content-Type: text/plain; charset="US-ASCII"
Using BYTE(09), as expected, does not shoe as tab in the PDF output.
Thanks,
Masoud
Joe Matise <snoopy369@GMAIL.COM>
Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
09/10/2010 02:16 PM
Please respond to
Joe Matise <snoopy369@GMAIL.COM>
To
SAS-L@LISTSERV.UGA.EDU
cc
Subject
Re: Tab character
"09"x is a hex number token (actually, 9)- not a character. Try
BYTE('09'x)
perhaps? Not sure about how that would interface with ODS PDF though.
-Joe
On Fri, Sep 10, 2010 at 2:02 PM, Masoud Pajoh <mpajoh@odot.org> wrote:
> I am writing a pdf file.
> I like to have a TAB character inserted several places like:
> title "this is the" TAB " title, which" Tab " is a test";
> This:
> title "this is the" "09"x " title, which" "09"x " is a test";
> does not work.
>
> What is the correct way.
>
> Masoud
>
|