1

I am currently trying to implement something that captures the feature that i clicked on and dragging.

Basically i want to be able to "OnMouseUp" figure out the item I was dragging, so I can do some calculations on that feature.

Does anyone have an idea on how to do that?

Thanks and Regards, Kevin

asked Apr 12, 2011 at 14:57

1 Answer 1

0

I managed to capture the feature moved using this event

Created the Engine Editor:

 if (EngineEditor.EditWorkspace != _scenario.GISMap.Workspace)
 {
 EngineEditor.StopEditing(true);
 EngineEditor.StartEditing(_GISMap.Workspace, _mapControl.Map);
 }

and added the following event:

((IEngineEditEvents_Event)EngineEditor).OnChangeFeature += new IEngineEditEvents_OnChangeFeatureEventHandler(EngineEditor_OnChangeFeature); ;
answered May 17, 2011 at 17:19

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.