AppEvents_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)

Usage

Sub Sub1(Sh As Object, _
    Target As Hyperlink)
End Sub
Dim appEvents_SheetFollowHyperlinkEventHandler1 As New AppEvents_SheetFollowHyperlinkEventHandler(AddressOf Sub1)

Syntax

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

Parameters

  • Sh
    Required Object. The Worksheet object that contains the hyperlink.
  • Target
    Required Hyperlink. The 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