I'm expanding on the sample app Track and edit shapes.
When editing a shape, I want access to the point selected - but I cannot get the ControlPointSelectedEditInteractiveOverlayEventArgs passed along.
I’ve made the eventhandler
AddHandler Map1.EditOverlay.ControlPointSelected, AddressOf OnControlPointSelected
and
Private Sub OnControlPointSelected()
Debug.print ("Working fine")
End Sub
And this is working as intended.
However I've got no idea of how to get the current selected point.
Sample code in VB, please.