<?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: Masking of SGPLOT title/Label in PDF Bookmarks in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398805#M13652</link>
    <description>&lt;P&gt;I am not sure I know precisely what you are asking, but bookmarkgen=no suppresses all bookmarks.&amp;nbsp; See:&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;BOOKMARKLIST= HIDE | NONE | SHOW&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimple"&gt;specifies whether to generate and display the list of bookmarks for PDF and PS files.&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;BOOKMARKGEN | NOBOOKMARKGEN | BOOKMARKGEN=&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimple"&gt;controls the generation of bookmarks in PDF and PS files.&lt;/P&gt;
&lt;P class="xis-paraSimple"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="xis-paraSimple"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#n0mc4eolqoned0n16oy88mpj0e4g.htm&amp;nbsp;" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#n0mc4eolqoned0n16oy88mpj0e4g.htm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods noproctitle;
ods pdf body='b.pdf' bookmarkgen=no;
title 'My Title';
proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;

proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;

proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;
ods pdf close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;If none of this is helpful, please state more specifically what you want.&lt;/P&gt;</description>
    <pubDate>Tue, 26 Sep 2017 14:05:45 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2017-09-26T14:05:45Z</dc:date>
    <item>
      <title>Masking of SGPLOT title/Label in PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398754#M13646</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using PROC SGPLOT for generating the graphs and after generatign the graph these are converted into WORD and PDF files using a macro. The concern is i am getting SG Plot Procedure as third title in bookmarks in PDF , but not in RTF as shown in the attached &amp;nbsp;file. I have tried with ODS NOPTITLE /ODS NOPROCTITLE and even ODS PROCLABEL, but still unable to mask The &amp;nbsp;SGPLOT Procedure Title in PDF. Are ther any other options/methods for masking this "The SGPLOT Procedure" in Bookmark. In the attached graph the graph is generated in 3 pages and each in each page, for bookmark it is displayng the title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for support/responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 09:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398754#M13646</guid>
      <dc:creator>keen_sas</dc:creator>
      <dc:date>2017-09-26T09:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Masking of SGPLOT title/Label in PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398805#M13652</link>
      <description>&lt;P&gt;I am not sure I know precisely what you are asking, but bookmarkgen=no suppresses all bookmarks.&amp;nbsp; See:&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;BOOKMARKLIST= HIDE | NONE | SHOW&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimple"&gt;specifies whether to generate and display the list of bookmarks for PDF and PS files.&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;BOOKMARKGEN | NOBOOKMARKGEN | BOOKMARKGEN=&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimple"&gt;controls the generation of bookmarks in PDF and PS files.&lt;/P&gt;
&lt;P class="xis-paraSimple"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="xis-paraSimple"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#n0mc4eolqoned0n16oy88mpj0e4g.htm&amp;nbsp;" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/69832/HTML/default/viewer.htm#n0mc4eolqoned0n16oy88mpj0e4g.htm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods noproctitle;
ods pdf body='b.pdf' bookmarkgen=no;
title 'My Title';
proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;

proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;

proc sgplot data=sashelp.class;
   reg y=weight x=height;
   run;
ods pdf close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;If none of this is helpful, please state more specifically what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 14:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398805#M13652</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-09-26T14:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Masking of SGPLOT title/Label in PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398809#M13654</link>
      <description>&lt;P&gt;You can also use the DESCRIPTION option in the SG procedures to change the TOC label:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class description="My Title";
vbar age;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 14:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/398809#M13654</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-09-26T14:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Masking of SGPLOT title/Label in PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/687934#M20546</link>
      <description>Hi Dan,&lt;BR /&gt;&lt;BR /&gt;Sorry to bring this back from the dead.  description = 'My title' works if I want a bookmark there at all.  I tried desription = '', but it still creates the bookmark just with a null string as the label.  Is there a way to stop that bookmark from being created altogether?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Michael</description>
      <pubDate>Wed, 30 Sep 2020 18:49:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Masking-of-SGPLOT-title-Label-in-PDF-Bookmarks/m-p/687934#M20546</guid>
      <dc:creator>Kastchei</dc:creator>
      <dc:date>2020-09-30T18:49:27Z</dc:date>
    </item>
  </channel>
</rss>

