<?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: Print map sample in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398834#M10374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like the links have been lost during forum migration &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/angry.png" /&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;PrintMap Sample&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;Live&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A version of this sample is also available in the interactive SDK: &lt;A href="https://developers.arcgis.com/silverlight/sample-code/start.htm#ClientPrinting"&gt;Client Printing&lt;/A&gt;. This version is simplified (not multipage, no way to fix the scale) but the UI has been enhanced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Oct 2014 15:03:05 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2014-10-20T15:03:05Z</dc:date>
    <item>
      <title>Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398821#M10361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For those who are interested, I just updated the &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;print map sample&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;A live version is still available &lt;/SPAN&gt;&lt;A href="http://broux.dominique.free.fr/Silverlight/MapPrinting/MapPrinting.html"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After refactoring the code, there are now separate components for:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- cloning a map (using an attached property)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- displaying the print grid (PrintOverviewLayer)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Combining these components gives more output possibilities just by changing the mapprinter style.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Example of output :&lt;/SPAN&gt;&lt;A href="http://broux.dominique.free.fr/Silverlight/MapPrinting/TourdeFrance2010WithLegend.pdf"&gt; WithLegend&lt;/A&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;A href="http://broux.dominique.free.fr/Silverlight/MapPrinting/TourdeFrance2010WithOverview.pdf"&gt;WithOverview &lt;/A&gt;&lt;SPAN&gt;(in low definition pdf to reduce file size).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 18:45:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398821#M10361</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-17T18:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398822#M10362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;firstly, excellent example print. I've actually used a customised version of the previous sample for some work &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did notice a couple of minor issues.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The Now property doesn't update so if you format the data to show time it's always the same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the CloneMap Clone method, you aren't setting the Max/Min Resolution for GraphicLayer types.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;toLayer.MinimumResolution = layer.MinimumResolution;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;toLayer.MaximumResolution = layer.MaximumResolution;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also in the same method you can save some processing by only cloning visible layers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i.e. foreach (var layer in mapToClone.Layers.Where(lyr =&amp;gt; lyr.Visible &amp;amp;&amp;amp; lyr.Opacity &amp;gt; 0.0))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Nov 2010 01:54:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398822#M10362</guid>
      <dc:creator>DaveTimmins</dc:creator>
      <dc:date>2010-11-18T01:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398823#M10363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dave,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your comments.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I updated the sample to take care of your remarks and to remove the 'CurrentPageFillSymbol' property (use the 'Selected' state of the 'PageFillSymbol' instead)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Nov 2010 12:04:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398823#M10363</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-19T12:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398824#M10364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thought I'd send my modified version in case you wanted to merge the additions. I've only attached the affected files (note that I've refactored the code to match my own coding style and I changed the namespace and deleted parts that I don't use).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The main additions are a dictionary that can be used for custom values to be output on the print. The Title property shows an example of this but I have used it in another project to insert a custom legend based on the symbols used for selections (the user could set a different symbol for each selection and then annotate that symbol for the legend). I also added 2 events, OnInitializingPrint and OnErrorPrinting. OnInitializingPrint can be used in conjunction with the dictionary described previously. OnErrorPrinting is self explanatory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is also a minor change in the CloneMap file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Nov 2010 18:34:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398824#M10364</guid>
      <dc:creator>DaveTimmins</dc:creator>
      <dc:date>2010-11-21T18:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398825#M10365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dave,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much for your additions. I will update the sample with them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a question about the added dictionary: Isn't possible to get the same expected result by initializing the data context of the map printer with whatever the user wants (a dictionary being a particular case)? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that, I didn't really try this option, so there is possibly a blocking point somewhere:)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 18:46:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398825#M10365</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-23T18:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398826#M10366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I just want to say : thanks to all of your hard work, The sample&amp;nbsp; really helped me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 18:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398826#M10366</guid>
      <dc:creator>DeminHu</dc:creator>
      <dc:date>2010-11-23T18:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398827#M10367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;yes setting the DataContext seems to work great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 20:29:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398827#M10367</guid>
      <dc:creator>DaveTimmins</dc:creator>
      <dc:date>2010-11-23T20:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398828#M10368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Demin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your nice comments.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am glad this helped you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 13:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398828#M10368</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-24T13:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398829#M10369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Folks:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you publish full solution for benifit of users. Thanks again&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SR&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 11:34:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398829#M10369</guid>
      <dc:creator>LakshmananVenkatesan</dc:creator>
      <dc:date>2010-11-25T11:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398830#M10370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the link to the code is at the top of the thread.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 17:04:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398830#M10370</guid>
      <dc:creator>DaveTimmins</dc:creator>
      <dc:date>2010-11-25T17:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398831#M10371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dave,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just updated the print sample with your great additions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- dictionary that be used for custom values to be output (I transformed it to an ObservableDictionary that is useful in some scenarios).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- new events OnErrorPrinting, PageChanged and PrintProgress (I changed your event 'OnPrintInitializing' to 'PageChanged'. This allows to change the output by page and and to see the result in the preview window (not tied to the beginning of the print)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://broux.dominique.free.fr/Silverlight/MapPrinting/TourdeFrance2010WithText.pdf"&gt;Here is an example of output depending on the page (text changes).&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much for your suggestions.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 17:58:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398831#M10371</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-11-25T17:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398832#M10372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;looks great. Awesome work &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 19:23:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398832#M10372</guid>
      <dc:creator>DaveTimmins</dc:creator>
      <dc:date>2010-11-25T19:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398833#M10373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link to the code is not working. Can you please help? Also does the sample work with silverlight 3.2 API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 14:27:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398833#M10373</guid>
      <dc:creator>VM2</dc:creator>
      <dc:date>2014-10-20T14:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398834#M10374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like the links have been lost during forum migration &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/angry.png" /&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;PrintMap Sample&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;Live&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A version of this sample is also available in the interactive SDK: &lt;A href="https://developers.arcgis.com/silverlight/sample-code/start.htm#ClientPrinting"&gt;Client Printing&lt;/A&gt;. This version is simplified (not multipage, no way to fix the scale) but the UI has been enhanced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 15:03:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398834#M10374</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2014-10-20T15:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398835#M10375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dominique!&lt;/P&gt;&lt;P&gt;For some reason, when I chose print dialog and select a part of the map to print, it is not printing in the full page. This feature was working fine with earlier code when we were using Silverlight API 2.4. Would you know what could be the reason?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 21:10:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398835#M10375</guid>
      <dc:creator>VM2</dc:creator>
      <dc:date>2014-10-21T21:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398836#M10376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The sample is supposed to support Silverlight 3.2 since all live versions are using it.&lt;/P&gt;&lt;P&gt;I you can share a repro case, I'll look at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Dominique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 09:04:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398836#M10376</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2014-10-23T09:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398837#M10377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks very much Dominique&lt;/P&gt;&lt;P&gt;i use this sample in my application&lt;/P&gt;&lt;P&gt;it is simple and very nice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 05:58:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398837#M10377</guid>
      <dc:creator>yousofothman</dc:creator>
      <dc:date>2014-10-28T05:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Print map sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398838#M10378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i cant use this sample with 2.4 api and silverlight 4,,, r there have any ver for&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 11:11:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/print-map-sample/m-p/398838#M10378</guid>
      <dc:creator>Asgharkhan</dc:creator>
      <dc:date>2015-03-09T11:11:00Z</dc:date>
    </item>
  </channel>
</rss>

