<?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 Object in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651824#M195596</link>
    <description>&lt;P&gt;Got it to work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename rwiOut "C:\Users\::REDACTED::";
ods html close;
ods html path=rwiOut file="UnformatText.html" style=Festival;


title "Using the DATA Argument";
data _null_;
dcl odsout obj();
   obj.format_text(data: "This text is displayed with the FORMAT_TEXT method."); 
   obj.note(data: "This text is displayed with the NOTE method.");
   obj.line(size:"1", style_attr: "bordercolor=blue");
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I couldn't get it to work with my default ODS style.&amp;nbsp; The ability to create HRs, horizontal rules, maybe dependent on the style you use. &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 May 2020 18:30:04 GMT</pubDate>
    <dc:creator>PhilC</dc:creator>
    <dc:date>2020-05-29T18:30:04Z</dc:date>
    <item>
      <title>ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651791#M195580</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Do you know how to change a style in Line Methode please? &lt;BR /&gt;I would like to have the blue line with obj.line(). I changed a size (with option size: 1 mm), but I don’t know how to change a color.&lt;BR /&gt;&lt;BR /&gt;Thank you for your help&lt;BR /&gt;Best regards,&lt;BR /&gt;Marie</description>
      <pubDate>Fri, 29 May 2020 17:27:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651791#M195580</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2020-05-29T17:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651796#M195584</link>
      <description>&lt;P&gt;Please show a more complete example of the code you are using or attempting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Often a single line of code interacts with other bits and we need to see a bit more to provide a better answer. Best is to provide code of an entire data step or procedure. Copy the code from the editor and paste it into a code box opened on the forum with either the &amp;lt;/&amp;gt; or "running man" icons that appear at the top of the message window. Please be aware that the main message windows will reformat text and sometimes make code extremely hard to read and occasionally insert artifacts that will make the code fail.&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 17:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651796#M195584</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-29T17:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651804#M195587</link>
      <description>&lt;P&gt;I have never seen this, but I was trying to do just what this says it does weeks ago.&amp;nbsp; Thanks, and good luck&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 18:01:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651804#M195587</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2020-05-29T18:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651810#M195588</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/286185"&gt;@SASdevAnneMarie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe something like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
	if _n_=1 then do;
		dcl odsout obj();
		obj.line(size:"1", style_attr: "bordercolor=blue");
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 18:00:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651810#M195588</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-29T18:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651818#M195592</link>
      <description>&lt;P&gt;This might help, I'm learning this with you.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://documentation.sas.com/?docsetId=odsadvug&amp;amp;docsetTarget=n1a6s17kcol07zn1jsxn170bnj8k.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Adding Unformatted Text to Your Output - SAS® 9.4 ODS: Advanced Topics, 3e&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This object is used with a particular environment which is demonstrated here.&amp;nbsp; I still haven't tried to add the line function yet...&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 18:11:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651818#M195592</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2020-05-29T18:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651824#M195596</link>
      <description>&lt;P&gt;Got it to work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename rwiOut "C:\Users\::REDACTED::";
ods html close;
ods html path=rwiOut file="UnformatText.html" style=Festival;


title "Using the DATA Argument";
data _null_;
dcl odsout obj();
   obj.format_text(data: "This text is displayed with the FORMAT_TEXT method."); 
   obj.note(data: "This text is displayed with the NOTE method.");
   obj.line(size:"1", style_attr: "bordercolor=blue");
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I couldn't get it to work with my default ODS style.&amp;nbsp; The ability to create HRs, horizontal rules, maybe dependent on the style you use. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 18:30:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651824#M195596</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2020-05-29T18:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651826#M195598</link>
      <description>Thank you very much!&lt;BR /&gt;It works!&lt;BR /&gt;</description>
      <pubDate>Fri, 29 May 2020 18:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651826#M195598</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2020-05-29T18:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Object</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651834#M195602</link>
      <description>Thank you! It works!</description>
      <pubDate>Fri, 29 May 2020 18:55:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Object/m-p/651834#M195602</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2020-05-29T18:55:28Z</dc:date>
    </item>
  </channel>
</rss>

