<?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 borders in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866594#M342236</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Awesome!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This solved my problem, thank you so much!&lt;/P&gt;</description>
    <pubDate>Mon, 27 Mar 2023 18:04:37 GMT</pubDate>
    <dc:creator>A_Kh</dc:creator>
    <dc:date>2023-03-27T18:04:37Z</dc:date>
    <item>
      <title>ODS LAYOUT borders</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866194#M342069</link>
      <description>&lt;P&gt;Dear Community,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to define &lt;STRONG&gt;top border line&lt;/STRONG&gt; (thick if possible) of ODS LAYOUT to separate the header from tables in my ODS pdf document, but not getting the desired result with Style= {borderstyle=/bottomborderstyle=}&amp;nbsp; options. Below is the code to produce the page. Does anyone know how to set the specific borders?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*create style template;
proc template;
	define style textframe;
		parent= styles.pearl;
			class usertext/
				frame=box
					backgroundcolor= _undef_;
				class header/
			borderbottomstyle=solid
		backgroundcolor= _undef_;
	end;
run; 

ods _all_ close; 
options nodate nonumber topmargin=0.3in bottommargin=0.2in leftmargin=0.2in rightmargin=0.2in;
ods escapechar='~';

ods pdf file= "&amp;amp;dir\test_doc.pdf" startpage=no style=textframe;
	footnote j=l "~S={font_face='Arial' font_weight=medium font_size=9pt URL='https://communities.sas.com'} ~S={font_face='Arial' font_weight=medium font_size=9pt FOREGROUND=blue} communities.sas.com"
			 j=c "~S={font_face='Arial' font_weight=medium font_size=9pt} CONFIDENTIAL"
			 j=r "~S={font_face='Arial' font_weight=medium font_size=9pt} Page ~{thispage}";
	title j=l "~S={font_face='Arial' font_weight=bold font_size=11pt} Assessment Name" 	
		  j=r "~S={font_face='Arial' font_weight=bold font_size=11pt bottomborderstyle=solid} Assessment Method";

		ods layout absolute width=19cm height=23cm; 

			ods region x=0.2in y=0.6in width=3.19in height=0.7in style={borderstyle=solid borderwidth=1};
				ods text="~{newline} ~S= {fontfamily='Arial' font_size=9pt font_weight=bold}	Qualitative Summary";
				
			ods region x=0.2in y=1.6in width=3.19in height=1.3in style={borderstyle=solid borderwidth=1};
				ods text="~{newline} ~S= {fontfamily='Arial' font_size=9pt font_weight=bold}	Summed Score Model" ;
				
			ods region x=4.2in y=0.6in width=3.19in height=0.7in style={borderstyle=solid borderwidth=1};
				ods text="~{newline} ~S= {fontfamily='Arial' font_size=9pt font_weight=bold}	Nested Model Comparison";
				
			ods region x=4.2in y=1.6in width=3.19in height=1.3in style={borderstyle=solid borderwidth=1};
				ods text="~{newline} ~S={fontfamily='Arial' font_size=9pt font_weight=bold}		XYT Graded Model";  
				         
			ods region x=0.4in y=3.3in width=7.0in height=5.5in style={backgroundimage="&amp;amp;dir\example-figure.png" };
				ods text='~S={fontfamily="Arial" textalign=center just=c font_size=10pt font_weight=bold} 	Item Results Map with reliability curve';

		ods layout end;

	title;footnote;
ods pdf close; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Mar 2023 21:54:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866194#M342069</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2023-03-24T21:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS LAYOUT borders</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866581#M342224</link>
      <description>&lt;P&gt;The style attribute name is BORDERBOTTOMSTYLE. I would suggest the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	title j=l "~S={font_face='Arial' font_weight=bold font_size=11pt
borderbottomwidth=2pt
 borderbottomcolor=black } Assessment Name" 	
		  j=r "~S={font_face='Arial' font_weight=bold font_size=11pt borderbottomwidth=2pt
 borderbottomcolor=black} Assessment Method";
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Mar 2023 17:27:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866581#M342224</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2023-03-27T17:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS LAYOUT borders</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866594#M342236</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Awesome!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This solved my problem, thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 18:04:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-LAYOUT-borders/m-p/866594#M342236</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2023-03-27T18:04:37Z</dc:date>
    </item>
  </channel>
</rss>

