Delete handles in link

Hi,
it’s possible to delete dynamic created handles in link?
For example, how can i delete handles in Orthogonal Link Reshaping Tool ?

Thanx

Basically, Tool.updateAdornments is responsible for creating any Adornments holding any tool handles. So you could override that method on your custom LinkReshapingTool.

But it is more convenient to override the undocumented method makeAdornment that LinkReshapingTool.updateAdornments calls. That is what OrthogonalLinkReshapingTool does, as you can see at http://gojs.net/latest/extensions/OrthogonalLinkReshapingTool.js. That extension calls the base method and then adds its own handles, but you could instead remove some handles, if you prefer.