<?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: Printing to PDF Issues in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568752#M15336</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran across this while delving deeper into the object model:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/000100000026000000.htm"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/000100000026000000.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's a developer sample for exporting the activeview to relevant formats.&amp;nbsp; Looks like the updated version of the link you shared.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Jan 2011 18:09:30 GMT</pubDate>
    <dc:creator>CaleBerkey</dc:creator>
    <dc:date>2011-01-06T18:09:30Z</dc:date>
    <item>
      <title>Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568746#M15330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am having trouble printing to PFD using C#.&amp;nbsp; The code outputs the map with everything it is suppose to have but it creates a much smaller pdf the what I have set for the page layout. For example, my page layout is 8.5 by 11 landscape but my document comes out as 4.4 by 3.4 inches.&amp;nbsp; I am not sure what I am missing.&amp;nbsp; I have tried the changing the resolution to 96dpi but it changes nothing.&amp;nbsp; Any help would be great.&amp;nbsp; My code is posted below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IMxDocument&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; mxDoc = (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IMxDocument&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;)esriApp.Document;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; hdc = 0;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; path = textBox3.Text;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; VendorID = textBox1.Text;&lt;BR /&gt;ESRI.ArcGIS.Display.&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;tagRECT&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; pExportFrame = mxDoc.ActiveView.ExportFrame;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IEnvelope&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; env = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;EnvelopeClass&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;();&lt;BR /&gt;env.PutCoords(pExportFrame.left, pExportFrame.top, (pExportFrame.right) , (pExportFrame.bottom) );&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IExport&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; exOP = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;ExportPDFClass&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;();&lt;BR /&gt;exOP.PixelBounds = env;&lt;BR /&gt;exOP.ExportFileName = path + &lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 2;"&gt;"\\"&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; + VendorID+&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 2;"&gt;".pdf"&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;try&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;{&lt;BR /&gt;hdc = exOP.StartExporting();&lt;BR /&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;catch&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;Exception&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; ex)&lt;BR /&gt;{&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;MessageBox&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;.Show(ex.Message);&lt;BR /&gt;}&lt;BR /&gt;mxDoc.ActiveView.Output(hdc, 300,&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;ref&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; pExportFrame, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;);&lt;BR /&gt;exOP.FinishExporting();&lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Aug 2010 16:51:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568746#M15330</guid>
      <dc:creator>JeffGiesler</dc:creator>
      <dc:date>2010-08-23T16:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568747#M15331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Figured it out. For anyone that runs into the same problem here is my code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; ISR = 96;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; OR = 300;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IMxDocument&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; mxDoc = (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IMxDocument&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;)esriApp.Document;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; hdc = 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; path = textBox3.Text;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; VendorID = textBox1.Text;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;ESRI.ArcGIS.Display.&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;tagRECT&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; pExportFrame;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IEnvelope&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; env = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;EnvelopeClass&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #008000; font-size: 2;"&gt;&lt;SPAN style="color: #008000; font-size: 2;"&gt;// resize the map from screen size to paper size. This is what I was missing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;pExportFrame.left = 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;pExportFrame.top = 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;pExportFrame.right = mxDoc.ActiveView.ExportFrame.right * (OR / ISR);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;pExportFrame.bottom = mxDoc.ActiveView.ExportFrame.bottom * (OR / ISR);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;env.PutCoords(pExportFrame.left, pExportFrame.top, pExportFrame.right , pExportFrame.bottom);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;IExport&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; exOP = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 2;"&gt;ExportPDFClass&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;exOP.PixelBounds = env;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;exOP.ExportFileName = path + &lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 2;"&gt;"\\"&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; + VendorID+&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 2;"&gt;".pdf"&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;hdc = exOP.StartExporting();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;mxDoc.ActiveView.Output(hdc, 96,&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;ref&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt; pExportFrame, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size:2;"&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;exOP.FinishExporting();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;Here is a link to help as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;&lt;A href="http://edndoc.esri.com/arcobjects/9.1/Samples/Cartography/Printing_and_Exporting/ExportActiveView.htm"&gt;http://edndoc.esri.com/arcobjects/9.1/Samples/Cartography/Printing_and_Exporting/ExportActiveView.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size:2;"&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Sep 2010 19:15:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568747#M15331</guid>
      <dc:creator>JeffGiesler</dc:creator>
      <dc:date>2010-09-02T19:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568748#M15332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the ExportPDFClass you reference?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cale&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 23:27:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568748#M15332</guid>
      <dc:creator>CaleBerkey</dc:creator>
      <dc:date>2011-01-05T23:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568749#M15333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cale,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you are looking for ESRI.ArcGIS.Output.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if that helped or if I can help you out in any other way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 02:49:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568749#M15333</guid>
      <dc:creator>JeffGiesler</dc:creator>
      <dc:date>2011-01-06T02:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568750#M15334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&amp;nbsp; For some reason I couldn't find any documentation on it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cale&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 14:27:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568750#M15334</guid>
      <dc:creator>CaleBerkey</dc:creator>
      <dc:date>2011-01-06T14:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568751#M15335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cale,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I know how you feel.&amp;nbsp; I look forever to find something.&amp;nbsp; I think I found it in a thread somewhere and a lot of messing around.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 15:33:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568751#M15335</guid>
      <dc:creator>JeffGiesler</dc:creator>
      <dc:date>2011-01-06T15:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568752#M15336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran across this while delving deeper into the object model:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/000100000026000000.htm"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/000100000026000000.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's a developer sample for exporting the activeview to relevant formats.&amp;nbsp; Looks like the updated version of the link you shared.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:09:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568752#M15336</guid>
      <dc:creator>CaleBerkey</dc:creator>
      <dc:date>2011-01-06T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568753#M15337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 19:56:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568753#M15337</guid>
      <dc:creator>JeffGiesler</dc:creator>
      <dc:date>2011-01-06T19:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to PDF Issues</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568754#M15338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks&lt;BR /&gt;Jeff&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=118291&amp;amp;g=1"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=118291&amp;amp;g=1&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 08:58:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/printing-to-pdf-issues/m-p/568754#M15338</guid>
      <dc:creator>Venkata_RaoTammineni</dc:creator>
      <dc:date>2011-01-07T08:58:51Z</dc:date>
    </item>
  </channel>
</rss>

