<?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: External Hatch Issue. in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/7947785#M6768</link>
    <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe you find something useful on these link.&lt;BR /&gt;There are example of .NET as you are looking for.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2010/06/tracing-a-boundary-defined-by-autocad-geometry-using-net.html" target="_blank"&gt;TroughTheInterface...&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Apr 2018 12:36:36 GMT</pubDate>
    <dc:creator>zrobert</dc:creator>
    <dc:date>2018-04-20T12:36:36Z</dc:date>
    <item>
      <title>External Hatch Issue.</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/7932337#M6767</link>
      <description>I can easily fetch the boundary information of a polyline type of hatch using getloopAt() method. But when the hatch type is external , i am not able to fetch the boundary points in the same way as i did previously. Please help me in the same like which method should be used. I am doing my code in C#.</description>
      <pubDate>Sat, 14 Apr 2018 05:08:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/7932337#M6767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-14T05:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: External Hatch Issue.</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/7947785#M6768</link>
      <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe you find something useful on these link.&lt;BR /&gt;There are example of .NET as you are looking for.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2010/06/tracing-a-boundary-defined-by-autocad-geometry-using-net.html" target="_blank"&gt;TroughTheInterface...&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 12:36:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/7947785#M6768</guid>
      <dc:creator>zrobert</dc:creator>
      <dc:date>2018-04-20T12:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: External Hatch Issue.</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8002173#M6769</link>
      <description>&lt;P&gt;No, this link is not what i want. I want to fetch the boundary information of external hatch type.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what i have done for polyline type.&lt;/P&gt;&lt;P&gt;Please suggest me the same for external hatch.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HatchLoop h1 = temphatch.GetLoopAt(i);&lt;/P&gt;&lt;P&gt;if (h1.IsPolyline)&lt;BR /&gt;{&lt;BR /&gt;BulgeVertexCollection p = h1.Polyline;&lt;BR /&gt;int numVer = p.Count;&lt;/P&gt;&lt;P&gt;di.Count = numVer - 1;&lt;/P&gt;&lt;P&gt;di.Type = ent.GetType().Name;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for (int k = 0; k &amp;lt; numVer - 1; k++)&lt;BR /&gt;{&lt;BR /&gt;Point pos = new Point();&lt;/P&gt;&lt;P&gt;pos.X = p[k].Vertex.X.ToString("F2");&lt;/P&gt;&lt;P&gt;pos.Y = p[k].Vertex.Y.ToString("F2");&lt;/P&gt;&lt;P&gt;pos.Z = "0.00";&lt;/P&gt;&lt;P&gt;di.Point.Add("Point" + (k + 1), pos);&lt;BR /&gt;}&lt;BR /&gt;hi.layer = ent.Layer.ToString();&lt;BR /&gt;hi.Data.Add(di);&lt;/P&gt;&lt;P&gt;hatchList.Add(hi);&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 07:49:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8002173#M6769</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-15T07:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: External Hatch Issue.</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8005592#M6770</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;I can easily fetch the boundary information of a polyline type of hatch using getloopAt() method. But when the hatch type is external , i am not able to fetch the boundary points in the same way as i did previously. Please help me in the same like which method should be used. I am doing my code in C#.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since you are using C# you should better ask this question in the .NET forum. &lt;/P&gt;
&lt;P&gt;I would also recomment to add a sample DWG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You wrote that you have implemeted code for polyline type. Did you check that your external hatch has this type? Maybe you have to implement other types.&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 11:54:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8005592#M6770</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2018-05-16T11:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: External Hatch Issue.</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8005845#M6771</link>
      <description>&lt;P&gt;Thank you for the reply sir, But i got the solution.&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 13:16:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/external-hatch-issue/m-p/8005845#M6771</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T13:16:03Z</dc:date>
    </item>
  </channel>
</rss>

