| Visual Basic (Declaration) | |
|---|---|
Public Event ToolClick() As ToolClickEventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public event ToolClickEventHandler ToolClick() | |
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.
| Property | Description |
|---|---|
| Tool | Gets or sets the tool that was clicked. |
| C# | Copy Code |
|---|---|
private void arViewer_ToolClick(object
sender, DataDynamics.ActiveReports.Toolbar.ToolClickEventArgs e) | |
| Visual Basic | Copy Code |
|---|---|
Private Sub arViewer_ToolClick(ByVal sender As Object, ByVal e As Toolbar.ToolClickEventArgs) Handles arvMain.ToolClick | |