WorkbookEvents_SheetFollowHyperlinkEventHandler Delegate
A Delegate type used to add an event handler for the SheetFollowHyperlink event. The SheetFollowHyperlink event occurs when you click any hyperlink in Microsoft Excel.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub WorkbookEvents_SheetFollowHyperlinkEventHandler ( _
Sh As Object, _
Target As Hyperlink _
)
'Usage
Dim instance As New WorkbookEvents_SheetFollowHyperlinkEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void WorkbookEvents_SheetFollowHyperlinkEventHandler(
Object Sh,
Hyperlink Target
)
Parameters
Sh
Type: System.ObjectRequired Object. The Worksheet object that contains the hyperlink.
Target
Type: Microsoft.Office.Interop.Excel.HyperlinkRequired Hyperlink. The Hyperlink object that represents the destination of the hyperlink.