Bookmark.Hyperlinks Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
HyperlinksDenetimdeki tüm köprüleri temsil eden bir koleksiyon alır Bookmark .
public Microsoft.Office.Interop.Word.Hyperlinks Hyperlinks { get; }
Özellik Değeri
HyperlinksDenetimdeki tüm köprüleri temsil eden bir koleksiyon Bookmark .
Örnekler
Aşağıdaki kod örneği, Bookmark belgeye metin içeren bir denetim ekler ve sonra yer işaretine bir köprü ekler.
Bu örnek, belge düzeyinde özelleştirme içindir
private void BookmarkHyperlinks()
{
object Address = "http://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);
}
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), _
"http://www.microsoft.com")
End Sub