Occurs when the user clicks on text or an image that has a hyperlink assigned to it.
[Visual Basic]
Public Event HyperLink() As HyperLinkEventHandler[C#]
public event HyperLinkEventHandler HyperLink();The event handler receives an argument of type HyperLinkEventArgs containing data related to this event. The following HyperLinkEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Button | Gets the mouse button that the user clicked to fire the event. |
| Handled | Sets or returns a value indicating whether the HyperLinkEvent is handled. |
| HyperLink | Gets the hyperlink target. |
[C#]
private void viewer1_HyperLink(object sender, DataDynamics.ActiveReports.Viewer.HyperLinkEventArgs e) |
[Visual Basic]
Private Sub Viewer1_HyperLink(ByVal sender As Object, ByVal e As DataDynamics.ActiveReports.Viewer. _ |
Viewer Class | Viewer Members | Walkthrough: Hyperlinks and Simulated Drill-Down Reporting
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.