Xml.xmldom.IDOMDocument.importNode

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function importNode(importedNode: IDOMNode; deep: WordBool): IDOMNode; safecall; { DOM Level 2 }

C++

virtual HRESULT __safecall importNode(_di_IDOMNode importedNode, System::WordBool deep, _di_IDOMNode &__importNode_result) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMDocument

Description

Imports a node from another document.

The importNode method imports a node from another document. importNode creates a copy of the source node. If the deep parameter is set to True, it imports all the children of the specified node. If the deep parameter is set to False, it imports only the node itself.

See Also