Method Append
- Namespace
- DotNetBrowser.Dom
- Assembly
- DotNetBrowser.dll
Append(INode)
Appends a node as the last item of the collection. The new node could be an existing node in the document, or a new node. If the node is existing node, it will be moved to new location in the document.
bool Append(INode node)
Parameters
node
INodethe node to append.
Returns
- bool
true
if the node was successfully appended,false
otherwise.
Exceptions
- ArgumentNullException
The
node
is null.- ObjectDisposedException
The INode has already been disposed.