<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS PDF text with frame in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30465#M4585</link>
    <description>Hi:&lt;BR /&gt;
  When you say "call function", I assume you mean your macro variable reference &amp;amp;Perc????&lt;BR /&gt;
&lt;BR /&gt;
  The reason it does not resolve is that you have your string in SINGLE quotes and macro variable references will not resolve in single quotes.&lt;BR /&gt;
&lt;BR /&gt;
  Try "flipping" the quotes:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods pdf text="^S={just=left borderwidth=1pt font=('times new roman',12pt,Bold)} Total Pay: € &amp;amp;Perc";   &lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                        &lt;BR /&gt;
and you should get resolution of &amp;amp;Perc (if it has been set with either a %LET or a CALL SYMPUT or some other technique).&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 09 Sep 2009 22:18:11 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-09-09T22:18:11Z</dc:date>
    <item>
      <title>ODS PDF text with frame</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30462#M4582</link>
      <description>How does one put a frame around text outputted to pdf ie. create a textbox. Have tried: &lt;BR /&gt;
&lt;BR /&gt;
ods pdf text='^S={just=left borderwidth=1pt font=("times new roman",12pt,Bold)}  Total Pay: € &amp;amp;Perc';&lt;BR /&gt;
&lt;BR /&gt;
but isn't working. Also the call function &amp;amp;Perc doesn't seem to work here is there any way I can call an assigned figure into this statement?</description>
      <pubDate>Tue, 12 May 2009 11:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30462#M4582</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-12T11:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF text with frame</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30463#M4583</link>
      <description>If you are using 9.2 you can use individual border control.  You have two options...&lt;BR /&gt;
&lt;BR /&gt;
(1) use inline styles like this :&lt;BR /&gt;
&lt;BR /&gt;
ods pdf text = '^{style [bordertopcolor=black bordertopwidth=1pt ] text statement}';&lt;BR /&gt;
&lt;BR /&gt;
or &lt;BR /&gt;
&lt;BR /&gt;
(2) use proc template :&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
   define style mystyle;&lt;BR /&gt;
   parent=styles.Printer;&lt;BR /&gt;
   style usertext from usertext /&lt;BR /&gt;
      bordertopcolor=red&lt;BR /&gt;
      bordertopwidth=0.5pt&lt;BR /&gt;
      ;&lt;BR /&gt;
   end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Scott</description>
      <pubDate>Tue, 12 May 2009 17:34:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30463#M4583</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2009-05-12T17:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF text with frame</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30464#M4584</link>
      <description>Do we have to specify each border?  I'm actually trying to HIDE the border, but same idea.  I wanted to override the default border that is showing up.  I was hoping I could just do "bodercolor=white" to hide it, but I had to set all four sides to white instead.  Is there something in my code or do we have to specify all 4?&lt;BR /&gt;
&lt;BR /&gt;
(Using 9.2p2 style=normal on Win Server)</description>
      <pubDate>Wed, 09 Sep 2009 19:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30464#M4584</guid>
      <dc:creator>JenHarper</dc:creator>
      <dc:date>2009-09-09T19:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF text with frame</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30465#M4585</link>
      <description>Hi:&lt;BR /&gt;
  When you say "call function", I assume you mean your macro variable reference &amp;amp;Perc????&lt;BR /&gt;
&lt;BR /&gt;
  The reason it does not resolve is that you have your string in SINGLE quotes and macro variable references will not resolve in single quotes.&lt;BR /&gt;
&lt;BR /&gt;
  Try "flipping" the quotes:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods pdf text="^S={just=left borderwidth=1pt font=('times new roman',12pt,Bold)} Total Pay: € &amp;amp;Perc";   &lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                        &lt;BR /&gt;
and you should get resolution of &amp;amp;Perc (if it has been set with either a %LET or a CALL SYMPUT or some other technique).&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 09 Sep 2009 22:18:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-text-with-frame/m-p/30465#M4585</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-09-09T22:18:11Z</dc:date>
    </item>
  </channel>
</rss>

