Discuss this help topic in SecureBlackbox Forum

TElXMLDOMElement.InnerXML

TElXMLDOMElement     See also     


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


Contains the XML representation of the element's contents.

Declaration

[C#]
    string InnerXML;

[VB.NET]
    Property InnerXML As String

[Pascal]
    property InnerXML : WideString;

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

[PHP]
    string get_InnerXML()
    void set_InnerXML(string $Value)

[Java]
    String getInnerXML();
    void setInnerXML(String Value);

Description

    Use this property to access or modify the XML element's contents. Setting this property replaces the children of the node with the parsed contents of the given string. The parsing is done in the current namespace context.

See also:     TextContent    

Discuss this help topic in SecureBlackbox Forum