XmlText.AppendChild(IXmlNode) Method
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.
Appends a new child node as the last child of the node.
public:
virtual IXmlNode ^ AppendChild(IXmlNode ^ newChild) = AppendChild;
IXmlNode AppendChild(IXmlNode const& newChild);
public IXmlNode AppendChild(IXmlNode newChild);
function appendChild(newChild)
Public Function AppendChild (newChild As IXmlNode) As IXmlNode
Parameters
- newChild
- IXmlNode
The new child node to be appended to the end of the list of children of this node.
Returns
The new child node successfully appended to the list. If null, no object is created.