System::Xml::XPath::XPathNavigator::AppendChild method
Contents
[
Hide
]XPathNavigator::AppendChild() method
Returns an XmlWriter object used to create one or more new child nodes at the end of the list of child nodes of the current node.
virtual SharedPtr<XmlWriter> System::Xml::XPath::XPathNavigator::AppendChild()
ReturnValue
An XmlWriter object used to create new child nodes at the end of the list of child nodes of the current node.
See Also
- Typedef SharedPtr
- Class XmlWriter
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.Page for C++
XPathNavigator::AppendChild(SharedPtr<XmlReader>) method
Creates a new child node at the end of the list of child nodes of the current node using the XML contents of the XmlReader object specified.
virtual void System::Xml::XPath::XPathNavigator::AppendChild(SharedPtr<XmlReader> newChild)
Parameter | Type | Description |
---|---|---|
newChild | SharedPtr<XmlReader> | An XmlReader object positioned on the XML data for the new child node. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.Page for C++
XPathNavigator::AppendChild(SharedPtr<XPathNavigator>) method
Creates a new child node at the end of the list of child nodes of the current node using the nodes in the XPathNavigator specified.
virtual void System::Xml::XPath::XPathNavigator::AppendChild(SharedPtr<XPathNavigator> newChild)
Parameter | Type | Description |
---|---|---|
newChild | SharedPtr<XPathNavigator> | An XPathNavigator object positioned on the node to add as the new child node. |
See Also
- Typedef SharedPtr
- Class XPathNavigator
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.Page for C++
XPathNavigator::AppendChild(String) method
Creates a new child node at the end of the list of child nodes of the current node using the XML data string specified.
virtual void System::Xml::XPath::XPathNavigator::AppendChild(String newChild)
Parameter | Type | Description |
---|---|---|
newChild | String | The XML data string for the new child node. |
See Also
- Class String
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.Page for C++