Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.NodeValue

TElXMLDOMNode     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property gets or sets the value of the node.

Declaration

[C#]
    string NodeValue;

[VB.NET]
    Property NodeValue As String

[Pascal]
    property NodeValue : WideString;

[C++]
    void get_NodeValue(sb_u16string &OutResult);
    void get_NodeValue(std::wstring &OutResult);
    void set_NodeValue(const sb_u16string &Value);
    void set_NodeValue(const std::wstring &Value);

[PHP]
    string get_NodeValue()
    void set_NodeValue(string $Value)

[Java]
    String getNodeValue();
    void setNodeValue(String aValue);

Parameters

  • aValue -

Description

    Use this property to get the value of the node.

    The value will be different for different types of nodes:

    Please note that reading and/or writing this property only makes sense for certain types of XML nodes. It is very likely that you need to use TElXMLDOMElement.InnerXML property instead.

See also:     NodeType     OuterXML     RawData    

Discuss this help topic in SecureBlackbox Forum