ActiveReports 8
HyperLink Event
See Also  Example
GrapeCity.ActiveReports.Viewer.Win.v8 Assembly > GrapeCity.ActiveReports.Viewer.Win Namespace > Viewer Class : HyperLink Event

Glossary Item Box

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
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, GrapeCity.ActiveReports.Viewer.Win.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 GrapeCity.ActiveReports.Viewer.Win _    
    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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also