Bookmark.TextRetrievalMode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a TextRetrievalMode object that controls how text is retrieved from the Bookmark control.
public:
property Microsoft::Office::Interop::Word::TextRetrievalMode ^ TextRetrievalMode { Microsoft::Office::Interop::Word::TextRetrievalMode ^ get(); void set(Microsoft::Office::Interop::Word::TextRetrievalMode ^ value); };
public Microsoft.Office.Interop.Word.TextRetrievalMode TextRetrievalMode { get; set; }
member this.TextRetrievalMode : Microsoft.Office.Interop.Word.TextRetrievalMode with get, set
Public Property TextRetrievalMode As TextRetrievalMode
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.
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);
}
Private Sub BookmarkTextRetrievalMode()
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).Font.Hidden = True
Bookmark1.TextRetrievalMode.IncludeHiddenText = False
MessageBox.Show("The text in Bookmark1 is: " & Bookmark1.Text)
End Sub