ImportNode Method

WebKit .NET

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

Imports a node from another document to this document.

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

Syntax

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

Parameters

NodeToImport
Type: WebKit.DOM..::.Node
The node to import.
Deep
Type: System..::.Boolean
Value indicating whether to create a deep copy of the node.

Return Value

The imported node.

See Also