INode.AppendChild(INode) Method

Definition

Adds the node newChild to the end of the list of children of this node.

[Android.Runtime.Register("appendChild", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;", "GetAppendChild_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INodeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Org.W3c.Dom.INode? AppendChild (Org.W3c.Dom.INode? newChild);
[<Android.Runtime.Register("appendChild", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;", "GetAppendChild_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INodeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member AppendChild : Org.W3c.Dom.INode -> Org.W3c.Dom.INode

Parameters

newChild
INode

The node to add.If it is a DocumentFragment object, the entire contents of the document fragment are moved into the child list of this node

Returns

The node added.

Attributes

Exceptions

HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the newChild node, or if the node to append is one of this node's ancestors or this node itself, or if this node is of type Document and the DOM application attempts to append a second DocumentType or Element node.
WRONG_DOCUMENT_ERR: Raised if newChild was created from a different document than the one that created this node.
NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly or if the previous parent of the node being inserted is readonly.
NOT_SUPPORTED_ERR: if the newChild node is a child of the Document node, this exception might be raised if the DOM implementation doesn't support the removal of the DocumentType child or Element child.

Remarks

Adds the node newChild to the end of the list of children of this node. If the newChild is already in the tree, it is first removed.

Java documentation for org.w3c.dom.Node.appendChild(org.w3c.dom.Node).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to