Bookmark.HighlightColorIndex Özellik

Tanım

Denetimin vurgu rengini alır veya ayarlar Bookmark .

public Microsoft.Office.Interop.Word.WdColorIndex HighlightColorIndex { get; set; }

Özellik Değeri

WdColorIndex

WdColorIndexDeğerlerden biri.

Örnekler

Aşağıdaki kod örneği, Bookmark ilk paragrafa metin içeren bir denetim ekler ve sonra HighlightColorIndex yer işaretindeki üçüncü sözcüğün birini sarı olarak ayarlar.

Bu örnek, belge düzeyinde özelleştirme içindir

private void BookmarkHighlightColorIndex()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is sample bookmark text.";
    bookmark1.Words[3].HighlightColorIndex = Word.WdColorIndex.wdYellow;
}
Private Sub BookmarkHighlightColorIndex()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    Bookmark1.Text = "This is sample bookmark text."
    Bookmark1.Words(3).HighlightColorIndex = _
        Word.WdColorIndex.wdYellow

End Sub

Açıklamalar

Bu özellik, wdNoHighlight denetimin vurgu rengini (varsa) kaldırır Bookmark .

Şunlara uygulanır