AppendChild Method

WebKit .NET

[This is preliminary documentation and is subject to change.]

Appends a new child node.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public Node AppendChild(
	Node NewChild
)
Visual Basic (Declaration)
Public Function AppendChild ( _
	NewChild As Node _
) As Node
Visual C++
public:
Node^ AppendChild(
	Node^ NewChild
)

Parameters

NewChild
Type: WebKit.DOM..::.Node
The node to append.

Return Value

The appended node.

See Also