<?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 Insert/Delete Vertex programatically in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572638#M15428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'd like to implement function to insert vertex on polyline just like in arcmap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When mouse cursor is located on boundary snap on polyline, clicking right mouse button, select insert vertex on popup menu.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My code to insert vetex is something like this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;==============================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pSelected As IEnumFeature = m_Map.FeatureSelection&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pFeature As IFeature = pSelected.Next()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pGeom As IGeometry = pFeature.Shape&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pGeomColn As IGeometryCollection = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPath As IPath = pGeomColn.Geometry(partIndex)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPoints As IPointCollection = pPath&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim Missing As Object = Type.Missing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim val As Object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; If vertexIndex = 0 Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val = 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, val, Missing)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val = vertexIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, Missing, val)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pGeom As IGeometry = pPoints&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Shape = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Store()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;==========================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At line pFeature.Shape = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Error occures like below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"The feature object does not have a valid shaple."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do I missed something else in code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any advice is OK.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Aug 2011 10:36:24 GMT</pubDate>
    <dc:creator>ChaesoonLim</dc:creator>
    <dc:date>2011-08-08T10:36:24Z</dc:date>
    <item>
      <title>Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572638#M15428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'd like to implement function to insert vertex on polyline just like in arcmap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When mouse cursor is located on boundary snap on polyline, clicking right mouse button, select insert vertex on popup menu.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My code to insert vetex is something like this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;==============================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pSelected As IEnumFeature = m_Map.FeatureSelection&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pFeature As IFeature = pSelected.Next()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pGeom As IGeometry = pFeature.Shape&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pGeomColn As IGeometryCollection = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPath As IPath = pGeomColn.Geometry(partIndex)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pPoints As IPointCollection = pPath&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim Missing As Object = Type.Missing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim val As Object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; If vertexIndex = 0 Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val = 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, val, Missing)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val = vertexIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, Missing, val)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pGeom As IGeometry = pPoints&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Shape = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Store()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;==========================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At line pFeature.Shape = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Error occures like below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"The feature object does not have a valid shaple."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do I missed something else in code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any advice is OK.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 10:36:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572638#M15428</guid>
      <dc:creator>ChaesoonLim</dc:creator>
      <dc:date>2011-08-08T10:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572639#M15429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;try&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pGeom As IGeometry = pFeature.ShapeCopy // does cloning of the geometry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After you finish editing if you got error use &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ITopologicaOperator2 IsknowSimple2 = false; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and call &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IToplogicalOperator.Simplify();&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 12:00:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572639#M15429</guid>
      <dc:creator>DubravkoAntonic</dc:creator>
      <dc:date>2011-08-08T12:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572640#M15430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I changed&amp;nbsp; pFeature.Shape to&amp;nbsp; pFeature.ShapeCopy, but error occures as same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;About ITopologicaOperator2, actually I cann't understand what you mean because of my short knowledge...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you write the code in detail, it'll be very thankful.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 02:20:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572640#M15430</guid>
      <dc:creator>ChaesoonLim</dc:creator>
      <dc:date>2011-08-09T02:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572641#M15431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No problem at all. I'm not native Visual Basic or .Net Basic but will try to answer in VB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure where did pHitPoint came from, is it maybe part of some other geometry. If this is the case you should Clone geometry. Cloning Geometry is important because of reusing same reference and there fore using object from someone else geometry and two parent objects are referencing one object but only one is really using it as valid geometry element.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How to clone?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
public static Function Clone(IPoint point) as IPoint[INDENT]Dim IClone cloner
cloner = point As IClone;
Set Clone = cloner.Clone as IPoint;
[/INDENT]Function End&lt;/PRE&gt;&lt;SPAN&gt;More of cloning from SDK&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/arcgisengine/dotnet/9915ff7d-f119-47ed-b381-cf7dded5cd93.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/help/9.3/arcgisengine/dotnet/9915ff7d-f119-47ed-b381-cf7dded5cd93.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim ITopologicaOperator2 pTopOp&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pTopOp = pGeom as ITopologicaOperator2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pTopOp.IsknowSimple2 = false&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pTopOp.Simplify&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Shape = pTopOp as IGeometry&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeature.Store&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:39:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572641#M15431</guid>
      <dc:creator>DubravkoAntonic</dc:creator>
      <dc:date>2021-12-12T00:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572642#M15432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks again for your kind explanation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But I still have problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The pHitPoint is a boundary snapped point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I called HitTest function to find out snapped point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pGeom As IGeometry = pFeature.Shape&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pHitTest As IHitTest = pGeom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pHitPoint As IPoint = New Point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pHitTest.HitTest(pPoint, tolerance, esriGeometryHitPartType.esriGeometryPartBoundary, pHitPoint, hitDist, partIndex, vertexIndex, bTrue)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And at the code "Set pTopOp = pGeom as ITopologicaOperator2",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;error occures because the type of pGeom is IPointCollection not IPoint, I think.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have any idea for resolve this problem?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 10:44:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572642#M15432</guid>
      <dc:creator>ChaesoonLim</dc:creator>
      <dc:date>2011-08-09T10:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572643#M15433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;According to your original code, you are getting a point collection from a path object, updating that point collection, then trying to assign the path object as the feature's shape.&amp;nbsp; You can't do that.&amp;nbsp; A path is not a high level geometry and cannot be used to assign a feature's shape.&amp;nbsp; You need to assign the shape using the original geometry reference you set at the beginning of the code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 12:35:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572643#M15433</guid>
      <dc:creator>NeilClemmons</dc:creator>
      <dc:date>2011-08-09T12:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572644#M15434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Neil is right.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your solution is there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IPolyline.SplitAtPoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/ArcGISDesktop/ArcObjects/esrigeometry/IPolycurve_SplitAtPoint.htm"&gt;http://resources.esri.com/help/9.3/ArcGISDesktop/ArcObjects/esrigeometry/IPolycurve_SplitAtPoint.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is some info and example at the bottom.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is useful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just some hint.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Create small static functions that does one thing and reuse them. with time you have your pretty powerful class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That way your code will evolve become more readable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 15:52:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572644#M15434</guid>
      <dc:creator>DubravkoAntonic</dc:creator>
      <dc:date>2011-08-09T15:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Insert/Delete Vertex programatically</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572645#M15435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks you, guys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I resolved this problem for your helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My code was changed something like below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Dim pSelected As IEnumFeature = m_Map.FeatureSelection
Dim pFeature As IFeature = pSelected.Next()
Dim pGeom As IGeometry = pFeature.Shape

Dim pHitTest As IHitTest = pGeom
Dim pHitPoint As IPoint = New Point
pHitTest.HitTest(pPoint, tolerance, esriGeometryHitPartType.esriGeometryPartBoundary, pHitPoint, hitDist, partIndex, vertexIndex, bTrue)

......

Dim pPoints As IPointCollection = pGeom
Dim Missing As Object = Type.Missing
Dim val As Object

If vertexIndex = 0 Then
&amp;nbsp;&amp;nbsp;&amp;nbsp; val = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, val, Missing)
Else
&amp;nbsp;&amp;nbsp;&amp;nbsp; val = vertexIndex
&amp;nbsp;&amp;nbsp;&amp;nbsp; pPoints.AddPoint(pHitPoint, Missing, val)
End If

pFeature.Shape = CType(pPoints, IGeometry)
pFeature.Store()&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Of course, as dubravko's comment, I created function in my own code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any Comment is OK.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:38:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/insert-delete-vertex-programatically/m-p/572645#M15435</guid>
      <dc:creator>ChaesoonLim</dc:creator>
      <dc:date>2021-12-12T16:38:20Z</dc:date>
    </item>
  </channel>
</rss>

