ActiveReports.Viewer3 Request technical support
HyperLink Event
See Also  Example


Occurs when the user clicks on text or an image that has a hyperlink assigned to it.

Syntax

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

Event Data

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.

PropertyDescription
Button Gets the mouse button that the user clicked to raise the event.
CreateNewTab Gets or sets a value indicating whether a new tab has been created.
Handled Sets or returns a value indicating whether the HyperLinkEvent is handled.
HyperLink Gets the hyperlink target.

Example

C#Copy Code
private void viewer1_HyperLink(object sender, DataDynamics.ActiveReports.Viewer3.HyperLinkEventArgs e)
{    
   rptDrillDown1 rpt2 =
new rptDrillDown1();    
   frmViewDrillDown1 frm2 =
new frmViewDrillDown1();    
   rpt2.Parameters[
"customerID"].Value = e.HyperLink.ToString();    
   rpt2.Run();    
   frm2.viewer1.Document = rpt2.Document;    
   frm2.ShowDialog(
this);
}
Visual BasicCopy Code
Private Sub Viewer1_HyperLink(ByVal sender As Object, ByVal e As DataDynamics.ActiveReports.Viewer3. _
    HyperLinkEventArgs) Handles Viewer1.HyperLink
    Dim rpt2 As New rptDrillDown1()
    Dim frm2 As New frmViewDrillDown1()
    rpt2.Parameters("customerID").Value = e.HyperLink.ToString
    Console.WriteLine(rpt2.ds.SQL.ToString)
    rpt2.Run()
    frm2.Viewer1.Document = rpt2.Document
    frm2.ShowDialog(Me)
End Sub

See Also