Bookmark.Hyperlinks-Eigenschaft (2007 System)

Aktualisiert: November 2007

Ruft eine Hyperlinks-Auflistung ab, die alle Links im Bookmark-Steuerelement darstellt.

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

Syntax

<BrowsableAttribute(False)> _
Public ReadOnly Property Hyperlinks As Hyperlinks

Dim instance As Bookmark
Dim value As Hyperlinks

value = instance.Hyperlinks
[BrowsableAttribute(false)]
public Hyperlinks Hyperlinks { get; }

Eigenschaftenwert

Typ: Microsoft.Office.Interop.Word.Hyperlinks

Eine Hyperlinks-Auflistung, die alle Links im Bookmark-Steuerelement darstellt.

Beispiele

Im folgenden Codebeispiel wird dem Dokument ein Bookmark-Steuerelement mit Text und anschließend dem Lesezeichen ein Link hinzugefügt.

Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.

Private Sub BookmarkHyperlinks()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    Bookmark1.Text = "The following text is a hyperlink: "

    Dim position As Object = Bookmark1.Range.End + 1

    Bookmark1.Hyperlinks.Add(Me.Range(position, position), _
        "https://www.microsoft.com")

End Sub
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);     
}

Berechtigungen

Siehe auch

Referenz

Bookmark-Klasse

Bookmark-Member

Microsoft.Office.Tools.Word-Namespace