XMLNode.NodeValue 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.
Returns or sets a String that represents the value of an attribute.
public:
property System::String ^ NodeValue { System::String ^ get(); void set(System::String ^ value); };
public string NodeValue { get; set; }
member this.NodeValue : string with get, set
Public Property NodeValue As String
Property Value
Remarks
A XMLNode object can be either an XML element or an attribute of an element. Use the NodeType property to determine which type of node you are working with.
For XMLNode objects with a NodeType value of wdXMLNodeElement, the NodeValue property returns nothing.