'Declaration Public Delegate Function CanDropEventHandler( _ ByVal sender As Object, _ ByVal e As DropEventArgs _ ) As Boolean
'Usage Dim instance As New CanDropEventHandler(AddressOf HandlerMethod)
public delegate bool CanDropEventHandler( object sender, DropEventArgs e )
Parameters
- sender
- The source of the event.
- e
- A DropEventArgs that contains event data.