<?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: Delete part of feature in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735216#M19543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply. However in some cases, I will&amp;nbsp;need to split the line feature a number of places where it intersects other line features as below. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/242244_splitpipe.png" style="width: 228px; height: 143px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Oct 2016 20:43:50 GMT</pubDate>
    <dc:creator>RavinHasseea</dc:creator>
    <dc:date>2016-10-09T20:43:50Z</dc:date>
    <item>
      <title>Delete part of feature</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735214#M19541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;I am looking to create a routine to remove part of a polyline, in particular 1m from each end of the polyline.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is using&amp;nbsp;IPolycurve.SplitAtDistance the best way to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 13:24:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735214#M19541</guid>
      <dc:creator>RavinHasseea</dc:creator>
      <dc:date>2016-09-23T13:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Delete part of feature</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735215#M19542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravin,&lt;/P&gt;&lt;P&gt;Take a look at &lt;A href="http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//002m00000110000000"&gt;ICurve.GetSubcurve&lt;/A&gt;. Extract the portion you want and post that geometry back to the feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 16:54:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735215#M19542</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-09-23T16:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Delete part of feature</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735216#M19543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply. However in some cases, I will&amp;nbsp;need to split the line feature a number of places where it intersects other line features as below. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/242244_splitpipe.png" style="width: 228px; height: 143px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Oct 2016 20:43:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735216#M19543</guid>
      <dc:creator>RavinHasseea</dc:creator>
      <dc:date>2016-10-09T20:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Delete part of feature</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735217#M19544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For those cases you can find the intersect locations as points with &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#itopologicaloperator_intersect.htm"&gt;ITopologicalOperator.Intersect&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Then use the points to either:&lt;/P&gt;&lt;P&gt;Find the distance along the line the intersection point occurs&amp;nbsp;with&amp;nbsp;&lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#ICurve_QueryPointAndDistance.htm"&gt;ICurve.QueryPointAndDistance&lt;/A&gt; then use getsubcurve to extract it, or&lt;/P&gt;&lt;P&gt;use&amp;nbsp;&lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#IFeatureEdit2_SplitWithUpdate.htm"&gt;IFeatureEdit2.SplitWithUpdate&lt;/A&gt; to just split the line with the intersection point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2016 17:02:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/delete-part-of-feature/m-p/735217#M19544</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-10-10T17:02:02Z</dc:date>
    </item>
  </channel>
</rss>

