How to detect risize of link is complete?

Hello,
I copied the custom GoLink from your StateCharter sample to have a real link that can be resized and is not automatically recalculated all the time.
What I would like to know is, how can I detect that a resizing operation is completed? That is I want to save the new link points as soon as the operation is complete.
Thanks for any help,
Angelika

Well, you can check the “evttype” argument to DoResize to see if it is GoInputState.Finish.
Or you can define a GoView.ObjectResized event handler–the GoSelectionEventArgs.GoObject will be the link that was just resized.

Hey,
in DoResize:
if (evttype == GoInputState.Finish) …
did it for me. You are super!
Thanks,
Angelika