DocEvents_FollowHyperlinkEventHandler Delegate 

A Delegate type used to add an event handler for the FollowHyperlink event. The FollowHyperlink event occurs when you click any hyperlink on a worksheet.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(Target As Hyperlink)
End Sub
Dim docEvents_FollowHyperlinkEventHandler1 As New DocEvents_FollowHyperlinkEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub DocEvents_FollowHyperlinkEventHandler( _
    <InAttribute()> ByVal Target As Hyperlink _
)
public delegate void DocEvents_FollowHyperlinkEventHandler(
    [In] Hyperlink Target
);
public delegate Void DocEvents_FollowHyperlinkEventHandler(
    Hyperlink^ Target
);
public delegate void DocEvents_FollowHyperlinkEventHandler(
    /*in*/Hyperlink Target
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Target
    Required Hyperlink. A Hyperlink object that represents the destination of the hyperlink.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace