LinkRemoved Event

Hello,

Is there an event for GoLinks which will be triggered when a link is removed/deleted from the view ? There is a LinkCreated and LinkRelinked event but no LinkRemoved Event. What I want is something link these events. I tried to use the SelectionRemoved event of the view but I couldnt get it to work since I can’t get a reference for the GoLink when it is erased. Any ideas ?

You want the DocumentChanged event, and look for e.Hint = GoLayer.RemovedObject.

UpdateDemo has a good sample of this.

Works perfect thanks so much Jake!