Document.FollowHyperlink Method

Resolves a hyperlink, or displays a cached document if the document has already been downloaded.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
Sub FollowHyperlink ( _
    ByRef Address As Object, _
    ByRef SubAddress As Object, _
    ByRef NewWindow As Object, _
    ByRef AddHistory As Object, _
    ByRef ExtraInfo As Object, _
    ByRef Method As Object, _
    ByRef HeaderInfo As Object _
)
void FollowHyperlink(
    ref Object Address,
    ref Object SubAddress,
    ref Object NewWindow,
    ref Object AddHistory,
    ref Object ExtraInfo,
    ref Object Method,
    ref Object HeaderInfo
)

Parameters

  • Address
    Type: System.Object%
    The address of the target document.
  • SubAddress
    Type: System.Object%
    The location within the target document. The default value is an empty string.
  • NewWindow
    Type: System.Object%
    true to display the target location in a new window. The default value is false.
  • AddHistory
    Type: System.Object%
    true to add the link to the current day's history folder.
  • ExtraInfo
    Type: System.Object%
    A string or a byte array that specifies additional information for HTTP to use to resolve the hyperlink. For example, you can use ExtraInfo to specify the coordinates of an image map, the contents of a form, or a FAT file name. The string is either posted or appended, depending on the value of Method. Use the ExtraInfoRequired property to determine whether extra information is required.
  • HeaderInfo
    Type: System.Object%
    A string that specifies header information for the HTTP request. The default value is an empty string. In Visual Basic, you can combine several header lines into a single string by using the following syntax: "string1 " & vbCr & "string2 ". The specified string is automatically converted into ANSI characters. Note that the HeaderInfo argument might overwrite default HTTP header fields.

Remarks

This method displays the cached document located at the Address parameter, if it has already been downloaded. Otherwise, this method resolves the hyperlink, downloads the target document, and displays the document in the appropriate application. If the hyperlink uses the file protocol, this method opens the document instead of downloading it.

Optional Parameters

For information on optional parameters, see Optional Parameters in Office Solutions.

.NET Framework Security

See Also

Reference

Document Interface

Microsoft.Office.Tools.Word Namespace