<?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 How to draw a circle (round) on the mapcontrol using C# ? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429346#M11630</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;Are there anyone know how to draw the below circle using C# ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]22664[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tai&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Mar 2013 00:09:04 GMT</pubDate>
    <dc:creator>TaiBui</dc:creator>
    <dc:date>2013-03-16T00:09:04Z</dc:date>
    <item>
      <title>How to draw a circle (round) on the mapcontrol using C# ?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429346#M11630</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;Are there anyone know how to draw the below circle using C# ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]22664[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tai&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Mar 2013 00:09:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429346#M11630</guid>
      <dc:creator>TaiBui</dc:creator>
      <dc:date>2013-03-16T00:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to draw a circle (round) on the mapcontrol using C# ?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429347#M11631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you have some options:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; ISegmentCollection segmentCollection = new PolygonClass(); segmentCollection.SetCircle(point, 10); IGeometry circle = segmentCollection as IGeometry; &lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or you can cast the point to ITopologicalOperator&amp;nbsp; and use buffer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or you can rotate a vector from a center point&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or use EllipticArcClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and so on..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Mar 2013 10:44:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429347#M11631</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2013-03-16T10:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to draw a circle (round) on the mapcontrol using C# ?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429348#M11632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;you have some options:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

ISegmentCollection segmentCollection = new PolygonClass();
segmentCollection.SetCircle(point, 10);
IGeometry circle = segmentCollection as IGeometry;

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;or you can cast the point to ITopologicalOperator&amp;nbsp; and use buffer&lt;BR /&gt;&lt;BR /&gt;or you can rotate a vector from a center point&lt;BR /&gt;&lt;BR /&gt;or use EllipticArcClass&lt;BR /&gt;&lt;BR /&gt;and so on..&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much. I can do now &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:18:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-draw-a-circle-round-on-the-mapcontrol-using/m-p/429348#M11632</guid>
      <dc:creator>TaiBui</dc:creator>
      <dc:date>2021-12-11T19:18:58Z</dc:date>
    </item>
  </channel>
</rss>

