XMLNode.ParentNode Property

Word Developer Reference

Returns an XMLNode object that represents the parent element of the specified element.

Syntax

expression.ParentNode

expression   An expression that returns an XMLNode object.

Example

The following example accesses the parent XML node of the text selected in the active document.

Visual Basic for Applications
  Dim objNode As XMLNode

Set objNode = Selection.XMLParentNode.ParentNode

See Also