<?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: &amp;quot;The specified splitting distance is not included in the curve to be split.&amp;quot; in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78151#M2086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried different combinations of true and false for these parameters. There is no error, but the polygon is not splitted neither, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;there aren't new vertex in it. Should I look for another function???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, Mar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2012 10:58:15 GMT</pubDate>
    <dc:creator>MarAlcaraz1</dc:creator>
    <dc:date>2012-02-02T10:58:15Z</dc:date>
    <item>
      <title>&amp;quot;The specified splitting distance is not included in the curve to be split.&amp;quot;</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78149#M2084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to run the IPolygon.SplitAtPoint method in this code. But I get a runtime-error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; "The specified splitting distance is not included in the curve to be split."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to insert new vertex in polygon features. Any idea??? Thanks!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pMxDoc As IMxDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pMxDoc = ThisDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pMap As IMap&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pMap = pMxDoc.FocusMap&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pFLayer As IFeatureLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pFLayer = pMap.Layer(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pFeatClass As IFeatureClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pFeatClass = pFLayer.FeatureClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pPointLayer As IFeatureLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pPointLayer = pMap.Layer(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pFCPoint As IFeatureClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pFCPoint = pPointLayer.FeatureClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For i = 0 To pFeatClass.FeatureCount(Nothing)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pFeat As IFeature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pFeat = pFeatClass.GetFeature(i)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPoly As IPolygon&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pPoly = pFeat.Shape&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; For j = 0 To pFCPoint.FeatureCount(Nothing)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pFPoint As IFeature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pFPoint = pFCPoint.GetFeature(j)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPColl As IPointCollection&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pPColl = pFPoint.Shape&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPoint As IPoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pPoint = pPColl.Point(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim path As Long&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim ring As Long&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; pPoly.SplitAtPoint pPoint, False, False, False, path, ring =&amp;gt; Runtime errorr!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Next &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 15:32:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78149#M2084</guid>
      <dc:creator>MarAlcaraz1</dc:creator>
      <dc:date>2012-02-01T15:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: "The specified splitting distance is not included in the curve to be split."</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78150#M2085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This error message means the input point is not on the polygon boundry.&amp;nbsp; Try to change the second parameter to true.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 17:52:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78150#M2085</guid>
      <dc:creator>WeifengHe</dc:creator>
      <dc:date>2012-02-01T17:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: "The specified splitting distance is not included in the curve to be split."</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78151#M2086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried different combinations of true and false for these parameters. There is no error, but the polygon is not splitted neither, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;there aren't new vertex in it. Should I look for another function???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, Mar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 10:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/amp-quot-the-specified-splitting-distance-is-not/m-p/78151#M2086</guid>
      <dc:creator>MarAlcaraz1</dc:creator>
      <dc:date>2012-02-02T10:58:15Z</dc:date>
    </item>
  </channel>
</rss>

