Bookmark.TextRetrievalMode Property

Definition

Gets or sets a TextRetrievalMode object that controls how text is retrieved from the Bookmark control.

C#
public Microsoft.Office.Interop.Word.TextRetrievalMode TextRetrievalMode { get; set; }

Property Value

A TextRetrievalMode object that controls how text is retrieved from the Bookmark control.

Examples

The following code example adds a Bookmark control with text to the document, hides the third word in the bookmark, and sets the TextRetrievalMode so that hidden text is not included. It then displays the text of the bookmark in a message box.

This example is for a document-level customization.

C#
private void BookmarkTextRetrievalMode()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    int WordTrue = 1;
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is sample bookmark text.";
    bookmark1.Words[3].Font.Hidden = WordTrue;
    bookmark1.TextRetrievalMode.IncludeHiddenText = false;
    MessageBox.Show("The text in bookmark1 is: " + bookmark1.Text);
}

Applies to

Product Versions
Visual Studio Tools for Office 2017, 2019, 2022