RemoveChild Method

WebKit .NET

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

Removes a child node.

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

Syntax

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

Parameters

OldChild
Type: WebKit.DOM..::.Node
The child to remove.

Return Value

The removed node.

See Also