<?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 Scale in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759871#M19382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;if you are interested I have posted this sample &lt;/SPAN&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16934" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16934&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;for print template mxd&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;you can use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- PrintClient.dll on soc &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- wsPrintClient (web service wcf) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In wsPrintClient you must do edit source code for graphics SL because it's for graphics javascript (if you need it)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;wsPrintClient&amp;nbsp; is service rest so you create your UI and call your code from sl.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if you don't need print template mxd you can use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/silverlight/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16697" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/silverlight/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16697&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in sl4 you also can use code ( see &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/05/04/Take-advantage-of-new-Silverlight-4.0-features-in-ArcGIS-Silverlight-API-2.0.aspx" rel="nofollow noopener noreferrer" target="_blank"&gt;http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/05/04/Take-advantage-of-new-Silverlight-4.0-features-in-ArcGIS-Silverlight-API-2.0.aspx&lt;/A&gt;&lt;SPAN&gt; ) :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
PrintDocument doc = new PrintDocument();
doc.PrintPage += (s, e) =&amp;gt; {&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; e.PageVisual = MyMap;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; e.HasMorePages = false; 
}; 
doc.Print("Map");&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 08:16:33 GMT</pubDate>
    <dc:creator>nicogis</dc:creator>
    <dc:date>2021-12-12T08:16:33Z</dc:date>
    <item>
      <title>Printing to Scale</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759870#M19381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am developing silverlight client GIS application and I want to give the feature to the user to print maps according to some predefined scales for example 1:1000, 1;2500, etc... on different paper sizes. I assume that I have to write webservices using arcobjects or something similar but I do not have a clue from where to start.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help is appreciated&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 04:50:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759870#M19381</guid>
      <dc:creator>BrianBorg</dc:creator>
      <dc:date>2010-06-15T04:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to Scale</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759871#M19382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;if you are interested I have posted this sample &lt;/SPAN&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16934" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16934&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;for print template mxd&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;you can use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- PrintClient.dll on soc &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- wsPrintClient (web service wcf) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In wsPrintClient you must do edit source code for graphics SL because it's for graphics javascript (if you need it)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;wsPrintClient&amp;nbsp; is service rest so you create your UI and call your code from sl.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if you don't need print template mxd you can use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/silverlight/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16697" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/silverlight/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16697&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in sl4 you also can use code ( see &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/05/04/Take-advantage-of-new-Silverlight-4.0-features-in-ArcGIS-Silverlight-API-2.0.aspx" rel="nofollow noopener noreferrer" target="_blank"&gt;http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/05/04/Take-advantage-of-new-Silverlight-4.0-features-in-ArcGIS-Silverlight-API-2.0.aspx&lt;/A&gt;&lt;SPAN&gt; ) :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
PrintDocument doc = new PrintDocument();
doc.PrintPage += (s, e) =&amp;gt; {&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; e.PageVisual = MyMap;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; e.HasMorePages = false; 
}; 
doc.Print("Map");&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759871#M19382</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2021-12-12T08:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Printing to Scale</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759872#M19383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you seen any examples of people using this with their own graphics layer?&amp;nbsp; I have implemented your solution to my Silverlight application but am currently unable to print my custom graphics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 16:44:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/printing-to-scale/m-p/759872#M19383</guid>
      <dc:creator>MichaelRose</dc:creator>
      <dc:date>2010-11-08T16:44:46Z</dc:date>
    </item>
  </channel>
</rss>

