Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the method that will handle a Hyperlink event.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)
Syntax
'Declaration
Public Delegate Sub HyperlinkEventHandler ( _
sender As Object, _
e As HyperlinkEventArgs _
)
'Usage
Dim instance As New HyperlinkEventHandler(AddressOf HandlerMethod)
public delegate void HyperlinkEventHandler (
Object sender,
HyperlinkEventArgs e
)
public delegate void HyperlinkEventHandler (
Object^ sender,
HyperlinkEventArgs^ e
)
/** @delegate */
public delegate void HyperlinkEventHandler (
Object sender,
HyperlinkEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object that raised the event.
- e
A HyperlinkEventArgs object that contains the arguments for this event.
Remarks
For more information about handling events, see Consuming Events.