Share via


Bookmark.Hyperlinks Property

Gets a Hyperlinks collection that represents all the hyperlinks in the Bookmark control.

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

Syntax

Hyperlinks Hyperlinks { get; }

Property Value

Type: Hyperlinks
A Hyperlinks collection that represents all the hyperlinks in the Bookmark control.

Examples

The following code example adds a Bookmark control with text to the document and then adds a hyperlink to the bookmark.

This example is for a document-level customization.

private void BookmarkHyperlinks()
{
    object Address = "https://www.microsoft.com";
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "The following text is a hyperlink: ";
    object position = bookmark1.Range.End + 1;

    bookmark1.Hyperlinks.Add(this.Range(ref position, ref position), ref Address, ref missing,
        ref missing, ref Address, ref missing);     
}

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace