CloneNode Method

WebKit .NET

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

Clones this node.

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

Syntax

C#
public Node CloneNode(
	bool Deep
)
Visual Basic (Declaration)
Public Function CloneNode ( _
	Deep As Boolean _
) As Node
Visual C++
public:
Node^ CloneNode(
	bool Deep
)

Parameters

Deep
Type: System..::.Boolean
Indicates whether to clone all children of the original node.

Return Value

A clone of this node.

See Also