|
|
|
InfoJet POM DOM Modification |
|
|
The following XML DOM modification methods of XPathNavigator interface are supported.
|
|
XML DOM Modification Methods of XPathNavigator |
|
Methods:
| void SetValue(string value) |
| void CreateAttribute(string prefix, string localName, string namespaceURI, string value) |
| void AppendChild(XPathNavigator newChild) |
| void PrependChild(XPathNavigator newChild) |
| void InsertAfter(XPathNavigator newSibling) |
| void InsertBefore(XPathNavigator newSibling) |
| void DeleteSelf() |
|
To set the element or attribute value, please use SetValue() method.
To add elements, please use AppendChild()/PrependChild()/InsertAfter()/InsertBefore() methods.
To add attribute, please use CreateAttribute() method.
To delete the element or attribute, please use DeleteSelf() method.
Other DOM modification methods of XPathNavigator are not supported.
|
|
|