ActiveReports.Viewer3 Request technical support
ToolClickEventHandler Delegate
See Also 


sender
The source of the event.
e
A ToolClickEventArgs class that contains the event data.
Represents the method that will handle the ToolClick event of a Toolbar.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub ToolClickEventHandler( _
   ByVal sender As Object, _
   ByVal e As ToolClickEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New ToolClickEventHandler(AddressOf HandlerMethod)
C# 
public delegate void ToolClickEventHandler( 
   object sender,
   ToolClickEventArgs e
)

Parameters

sender
The source of the event.
e
A ToolClickEventArgs class that contains the event data.

See Also