Hi,
I’m trying to use the event handler when an object is selected (in vb.net) but I can’t figure out how to do this? I tried to add the code below to my plugin but it doesn’t work? Thanks for helping!
Matthieu
Public Shared Event SelectObjects As EventHandler(Of Rhino.DocObjects.RhinoObjectSelectionEventArgs)
Private Sub testEventSelectObject(sender As Object, e As EventArgs) Handles MyClass.SelectObjects
MsgBox("Event")
End Sub