<?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 Layout different border lines in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433928#M20319</link>
    <description>&lt;P&gt;Here is what I tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;
ods pdf file="test_borders.pdf";
  ods layout start style={bordercolor=red borderstyle=solid borderwidth=1pt};
    ods region x=1pct y=2pct;
    proc print data=sashelp.cars(obs=10);
    run;
  ods layout end;
ods pdf close;

ods pdf file="test_borders2.pdf";
  ods layout start style={borderleftcolor=red borderleftstyle=solid borderleftwidth=1pt};
    ods region x=1pct y=2pct;
    proc print data=sashelp.cars(obs=10);
    run;
  ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The&amp;nbsp;first output has red colored borders, but the second output does not have the intended left border.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Sun, 04 Feb 2018 01:38:05 GMT</pubDate>
    <dc:creator>qiaohao</dc:creator>
    <dc:date>2018-02-04T01:38:05Z</dc:date>
    <item>
      <title>ODS Layout different border lines</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433900#M20317</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Ods Layout and Ods Region, we can specify the border style using style={borderstyle=solid, bordercolor=blue}. This will produce the same solid blue border lines. But I want to have different border lines, for example, I only need the top border line, but not the left/right/bottom border lines. I tried using borderTopStyle/borderTopColor, but it does not work. It seems that the Top/Bottom/Left/Right style specification only works on a cell, but not on layout and region.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to specify different border lines for layout and region area?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps, my output will be in PDF file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 22:55:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433900#M20317</guid>
      <dc:creator>qiaohao</dc:creator>
      <dc:date>2018-02-03T22:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Layout different border lines</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433926#M20318</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I tried using borderTopStyle/borderTopColor, but it does not work. I would expect that to work, basically set the other styles to white to have 'invisible' borders.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please show what you've tried.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/143299"&gt;@qiaohao&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Ods Layout and Ods Region, we can specify the border style using style={borderstyle=solid, bordercolor=blue}. This will produce the same solid blue border lines. But I want to have different border lines, for example, I only need the top border line, but not the left/right/bottom border lines. I tried using borderTopStyle/borderTopColor, but it does not work. It seems that the Top/Bottom/Left/Right style specification only works on a cell, but not on layout and region.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way to specify different border lines for layout and region area?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ps, my output will be in PDF file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 01:19:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433926#M20318</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-04T01:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Layout different border lines</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433928#M20319</link>
      <description>&lt;P&gt;Here is what I tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;
ods pdf file="test_borders.pdf";
  ods layout start style={bordercolor=red borderstyle=solid borderwidth=1pt};
    ods region x=1pct y=2pct;
    proc print data=sashelp.cars(obs=10);
    run;
  ods layout end;
ods pdf close;

ods pdf file="test_borders2.pdf";
  ods layout start style={borderleftcolor=red borderleftstyle=solid borderleftwidth=1pt};
    ods region x=1pct y=2pct;
    proc print data=sashelp.cars(obs=10);
    run;
  ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The&amp;nbsp;first output has red colored borders, but the second output does not have the intended left border.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 01:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Layout-different-border-lines/m-p/433928#M20319</guid>
      <dc:creator>qiaohao</dc:creator>
      <dc:date>2018-02-04T01:38:05Z</dc:date>
    </item>
  </channel>
</rss>

