Bookmark.XMLParentNode Property

Definition

Gets an XMLNode object that represents the parent node of a Bookmark control.

C#
public Microsoft.Office.Interop.Word.XMLNode XMLParentNode { get; }

Property Value

An XMLNode object that represents the parent node of a Bookmark control.

Examples

The following code example inserts XML into the document and creates a Bookmark control on the second word. It then inserts additional XML into the bookmark and displays the text of the XMLParentNode in a message box.

This example is for a document-level customization.

C#
private void BookmarkParentNode()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    this.Paragraphs[1].Range.InsertParagraphBefore();
    this.Paragraphs[1].Range.InsertXML("<example>This is an example.</example>",
        ref missing);
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range.Words[2],
        "bookmark1");
    bookmark1.Characters.First.InsertXML("<character>T</character>", ref missing);
                
    MessageBox.Show(bookmark1.XMLParentNode.Text);
}

Applies to

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