I am using IEditEvents_Event and IEditor. I invoked the GarciaUI_CreateNewFeatureTask and used
pID.Value = "esriEditor.SketchTool";
pCommandItem = pCommandBars.Find(pID);
if (pCommandItem != null)
{
pCommandItem.Execute();
}
It is working and I can create a polygon in edit mode. I want to capture an event after the Polygon Creation is completed. I also have an other button on the same form to Split Polygon. I want to capture an event after the split is completed. But I want to capture both these event separately. Can someone help me to accomplish it.
I have to do it in c# + ArcObjects ArcGIS10.3
Many Thanks.
Hussain