ActiveReports.Viewer3 Request technical support
ToolClick Event
See Also 


Occurs when the user clicks a tool on the viewer's toolbar.

Syntax

Visual Basic (Declaration) 
Public Event ToolClick() As ToolClickEventHandler
Visual Basic (Usage)Copy Code
Dim instance As Viewer
Dim handler As ToolClickEventHandler
 
AddHandler instance.ToolClick, handler
C# 
public event ToolClickEventHandler ToolClick()

Event Data

The event handler receives an argument of type ToolClickEventArgs containing data related to this event. The following ToolClickEventArgs properties provide information specific to this event.

PropertyDescription
Tool Gets or sets the tool that was clicked.

See Also