I have a polyline geometry and wish to split it into two different geometries, based on a given point on that line, in ArcObjects.
I have tried to find out how to do this, but to no avail. I found that there are three methods which are sort of related to what I want.
أكثر...
I have tried to find out how to do this, but to no avail. I found that there are three methods which are sort of related to what I want.
- IFeatureEdit.Split Method This seems to do exactly what I want, but it Works on a Feature, and not on a Geometry. I Do not want to edit existing features, but copy the geometry from an existing feature, split it in two parts, and then process those parts.
- IPolycurve.SplitAtPoint Method I though that this method would be useful, but it just adds a new vertex at the point, and does not split the polyline
- ITopologicalOperator.Cut Method This would also work, but when I use it, giving a perpendicular line as the input paramter, I am getting an error which says 'An Internal error has occured in the geometry system.'
أكثر...