<?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: How to Create Dashed Line Border in a Dynamic Layer in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563365#M14524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for the suggestion.&amp;nbsp; I will give that a try and let you know how it goes. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's a nice little trick; why isn't it documented or 'supported'?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jan 2014 15:11:25 GMT</pubDate>
    <dc:creator>TomRippetoe</dc:creator>
    <dc:date>2014-01-14T15:11:25Z</dc:date>
    <item>
      <title>How to Create Dashed Line Border in a Dynamic Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563363#M14522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using the Silverlight 3.0 API and ArcGIS Server 10.1. I have a Dynamic Map Service Layer where i am trying to change polygon borders programmatically.&amp;nbsp; I want to the ability to set the border to be a dashed line. Can this be done using any of the standard Symbol types, e.g. SimpleFillSymbol, and properties?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have seen this example (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/threads/59645-How-to-create-Dash-Dot-Dot-Border-for-custom-fill-symbol" rel="nofollow" target="_blank"&gt;http://forums.arcgis.com/threads/59645-How-to-create-Dash-Dot-Dot-Border-for-custom-fill-symbol&lt;/A&gt;&lt;SPAN&gt;) and this one (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/threads/59645-How-to-create-Dash-Dot-Dot-Border-for-custom-fill-symbol" rel="nofollow" target="_blank"&gt;http://forums.arcgis.com/threads/59645-How-to-create-Dash-Dot-Dot-Border-for-custom-fill-symbol&lt;/A&gt;&lt;SPAN&gt;) but they seem to apply specificly to client side graphics - not the symbology within a dynamic layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can set a dashed boundary using 'Symbol.FromJson' fairly easily but its not particularly easy nor elegant. Additionally, i haven't been able to locate any specs about the JSON in terms of what values are possible. For example, how can i control the dash pattern, or space between the dashes?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 22:24:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563363#M14522</guid>
      <dc:creator>TomRippetoe</dc:creator>
      <dc:date>2014-01-13T22:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Dashed Line Border in a Dynamic Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563364#M14523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No the standard SimpleFillSymbol doesn't support dashed lines.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The supported way to do it is to define your own serializable symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The easiest but unsupported way is to use the internal ESRI.ArcGIS.Client.FeatureService.Symbols.SimpleFillSymbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
....
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:symbols="clr-namespace:ESRI.ArcGIS.Client.FeatureService.Symbols;assembly=ESRI.ArcGIS.Client"&amp;gt;

......

&amp;lt;esri:LayerDrawingOptions.Renderer&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;symbols:SimpleFillSymbol BorderBrush="#74E01B" BorderThickness="1" Fill="#7074E01B" BorderStyle="DashDotDot"&amp;nbsp; /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer&amp;gt;
&amp;lt;/esri:LayerDrawingOptions.Renderer&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:38:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563364#M14523</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-12T16:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Dashed Line Border in a Dynamic Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563365#M14524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for the suggestion.&amp;nbsp; I will give that a try and let you know how it goes. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's a nice little trick; why isn't it documented or 'supported'?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 15:11:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563365#M14524</guid>
      <dc:creator>TomRippetoe</dc:creator>
      <dc:date>2014-01-14T15:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Dashed Line Border in a Dynamic Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563366#M14525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It works.&amp;nbsp; Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 15:22:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-create-dashed-line-border-in-a-dynamic/m-p/563366#M14525</guid>
      <dc:creator>TomRippetoe</dc:creator>
      <dc:date>2014-01-14T15:22:04Z</dc:date>
    </item>
  </channel>
</rss>

