Bookmark.EmphasisMark Property

Definition

Gets or sets the emphasis mark for a character or designated character string within a Bookmark control.

public:
 property Microsoft::Office::Interop::Word::WdEmphasisMark EmphasisMark { Microsoft::Office::Interop::Word::WdEmphasisMark get(); void set(Microsoft::Office::Interop::Word::WdEmphasisMark value); };
public Microsoft.Office.Interop.Word.WdEmphasisMark EmphasisMark { get; set; }
member this.EmphasisMark : Microsoft.Office.Interop.Word.WdEmphasisMark with get, set
Public Property EmphasisMark As WdEmphasisMark

Property Value

One of the WdEmphasisMark values.

Examples

The following code example adds a Bookmark control with text to the first paragraph and then sets the EmphasisMark on the bookmark to wdEmphasisMarkOverComma.

This example is for a document-level customization.

private void BookmarkEmphasisMark()
{
    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.EmphasisMark = Word.WdEmphasisMark.wdEmphasisMarkOverWhiteCircle;
    
}
Private Sub BookmarkEmphasisMark()

    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.EmphasisMark = Word.WdEmphasisMark _
        .wdEmphasisMarkOverWhiteCircle

End Sub

Applies to