ReportViewer.Hyperlink Event

 

Occurs when a user clicks a hyperlink in a report.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public event HyperlinkEventHandler Hyperlink
public:
event HyperlinkEventHandler^ Hyperlink {
    void add(HyperlinkEventHandler^ value);
    void remove(HyperlinkEventHandler^ value);
}
member Hyperlink : IEvent<HyperlinkEventHandler,
    HyperlinkEventArgs>
Public Event Hyperlink As HyperlinkEventHandler

Remarks

This event occurs when a user clicks a hyperlink in a report, before the hyperlink is followed. Information about this event is passed in a HyperlinkEventArgs object to the HyperlinkEventHandler delegate, which handles the event.

For more information about handling events, see NIB: Consuming Events.

See Also

ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top