Represents a method that will handle the ToolboxItemChanged event.
Syntax
'Declaration
Public Delegate Sub ToolboxItemChangedEventHandler( _
ByVal As Object, _
ByVal As EventArgs _
)
public delegate void ToolboxItemChangedEventHandler(
object ,
EventArgs
)
Parameters
- sender
- The source of the event.
- e
- ToolboxItemChangedArgs class which contains the event data.
See Also