Expand Minimize
This topic has not yet been rated - Rate this topic

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)

'Usage
Sub Sub1(Sh As Object, _
	Target As Hyperlink)
End Sub
Dim workbookEvents_SheetFollowHyperlinkEventHandler1 As New WorkbookEvents_SheetFollowHyperlinkEventHandler(AddressOf Sub1)

public delegate void WorkbookEvents_SheetFollowHyperlinkEventHandler(
	[In] object Sh, 
	[In] Hyperlink Target
);
public delegate void WorkbookEvents_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.

Development Platforms

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

Target Platforms

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.