<?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: work with intersection point of the lines in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428955#M11601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So you have your feature class, say featCls&lt;BR /&gt;IFeature feat = featCls.CreateFeature&lt;BR /&gt;feat.Shape = point //point is the intersection of the pplyline&lt;BR /&gt;feat.Store()&lt;BR /&gt;&lt;BR /&gt;That's it, you just added the point to your feature class.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Weifeng!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;found an article about it&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002rs000000"&gt;Updating features&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Feb 2014 04:41:27 GMT</pubDate>
    <dc:creator>DenEsenal</dc:creator>
    <dc:date>2014-02-20T04:41:27Z</dc:date>
    <item>
      <title>work with intersection point of the lines</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428951#M11597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi everybody,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am new to ArcObjects and looking to get some ideas.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are several polyline and point features in GDB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Need to add point to an existing point feature class. Point formed at the intersection of the lines &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How to do this in the process of drawing a polyline? &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>Wed, 22 Jan 2014 08:43:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428951#M11597</guid>
      <dc:creator>DenEsenal</dc:creator>
      <dc:date>2014-01-22T08:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: work with intersection point of the lines</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428952#M11598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Den,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am not aware how to add the intersection point while drawing polyline. However, below is the link for sample code to create point where polyline intersect. It is a VBA code You may need to modify the code as per your requirements.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/vba_desktop/conceptualhelp/index.html#//00010000002m000000"&gt;http://help.arcgis.com/en/sdk/10.0/vba_desktop/conceptualhelp/index.html#//00010000002m000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this will be helpful to start with your requirement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Swapna.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 05:23:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428952#M11598</guid>
      <dc:creator>swapnabhide</dc:creator>
      <dc:date>2014-01-27T05:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: working with intersection point of the lines</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428953#M11599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Den,&lt;BR /&gt;&lt;BR /&gt;I am not aware how to add the intersection point while drawing polyline. However, below is the link for sample code to create point where polyline intersect. It is a VBA code You may need to modify the code as per your requirements.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/vba_desktop/conceptualhelp/index.html#//00010000002m000000"&gt;http://help.arcgis.com/en/sdk/10.0/vba_desktop/conceptualhelp/index.html#//00010000002m000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this will be helpful to start with your requirement.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Swapna.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Swapna!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks/ VBA code works. Now I can find intersection points.:) �?ne step closer to my goal.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And my next problem is adding this points to existing point FC&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 04:35:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428953#M11599</guid>
      <dc:creator>DenEsenal</dc:creator>
      <dc:date>2014-02-18T04:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: work with intersection point of the lines</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428954#M11600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So you have your feature class, say featCls&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IFeature feat = featCls.CreateFeature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;feat.Shape = point //point is the intersection of the pplyline&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;feat.Store()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's it, you just added the point to your feature class.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 20:37:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428954#M11600</guid>
      <dc:creator>WeifengHe</dc:creator>
      <dc:date>2014-02-19T20:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: work with intersection point of the lines</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428955#M11601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So you have your feature class, say featCls&lt;BR /&gt;IFeature feat = featCls.CreateFeature&lt;BR /&gt;feat.Shape = point //point is the intersection of the pplyline&lt;BR /&gt;feat.Store()&lt;BR /&gt;&lt;BR /&gt;That's it, you just added the point to your feature class.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Weifeng!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;found an article about it&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002rs000000"&gt;Updating features&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 04:41:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/work-with-intersection-point-of-the-lines/m-p/428955#M11601</guid>
      <dc:creator>DenEsenal</dc:creator>
      <dc:date>2014-02-20T04:41:27Z</dc:date>
    </item>
  </channel>
</rss>

