Discuss this help topic in SecureBlackbox Forum
Contains the XML representation of the element's contents.
Declaration
[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.
Discuss this help topic in SecureBlackbox Forum