Click or drag to resize

INodeCollectionAppend Method

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.

Namespace:  DotNetBrowser.Dom
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
bool Append(
	INode node
)

Parameters

node
Type: DotNetBrowser.DomINode
the node to append.

Return Value

Type: Boolean
true if the node was successfully appended, false otherwise.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe node is null.
ObjectDisposedExceptionThe INode has already been disposed.
See Also