I am new to ArcGIS.
I am using the ArcObjects SDK and I couldn't understand how to:
- Add vertex to that clicked location as well
- Add attributes in that attribute table.
Can someone suggest some books so that I can get better knowledge of ArcGIS.
I am new to ArcGIS.
I am using the ArcObjects SDK and I couldn't understand how to:
Can someone suggest some books so that I can get better knowledge of ArcGIS.
I found ArcGIS Desktop .NET SDK help the best one. you can cast your polyline object to IPointCollection object and then add your IPoint objects to this collection.Even better interfaces like IPointCollection1,2,3 you can use.Hope this helps.
ArcGIS Developer help description for IPolyLine.SplitAtPoint is "Adds a new vertex along the curve as the specified input point, or the projection onto the curve of the specified input point" so it doesn't make two splited polyline from th first one.IFeatureEdit.Split provide your desired function and maybe IFeatureEdit2.SplitWithUpdate even the latter doesn't delete the origin polyline but adds 2 new splitted polylines along the first one.