GoLabeledLink event on drag of link point

I have a GoLabeledLink. I am dragging a point on the link. After drag completes, I want to store all the link point segments. Right now, the only event I can find to allow this is OnDocumentChanged with e.SubHint == GoLink.ModifiedPoint. However, this event gets fired as I drag the point, causing multiple calls to my update function. Is there another event I can call that gets fired only when the drag of a link point is completed?

How to detect risize of link is complete? is how to tell in the DoResize override.

The current tool (GoView.Tool) is GoToolResizing. This tool’s LastInput.InputState will be GoInputState.Finish at this point as well.

Perfect! Thanks.