Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.ImportNode

TElXMLDOMDocument     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Creates the entity declaration with given data.

Declaration

[C#]
    TElXMLDOMNode ImportNode(TElXMLDOMNode aNode, bool Deep);

[VB.NET]
    Function ImportNode(ByVal aNode As TElXMLDOMNode, ByVal Deep As Boolean) As TElXMLDOMNode

[Pascal]
    function ImportNode(const aNode : TElXMLDOMNode; Deep : Boolean) : TElXMLDOMNode;

[C++]
    TElXMLDOMNodeHandle ImportNode(const TElXMLDOMNode &aNode, bool Deep);
    TElXMLDOMNodeHandle ImportNode(const TElXMLDOMNode *aNode, bool Deep);

[PHP]
    TElXMLDOMNode ImportNode(TElXMLDOMNode $aNode, bool $Deep)

[Java]
    TElXMLDOMNode importNode(TElXMLDOMNode aNode, boolean Deep);

Parameters

  • Node - A node, whose copy will be added to the document.
  • Deep - When this parameter is true, Node children are copied too. When the parameter is false, only the node itself is copied.
  • aNode - ...

Return value

    Returns a reference to the newly created node object.

Description

    Use this method to create a copy of the node and add this copy to the XML document. The method returns a reference to the newly created node.

Discuss this help topic in SecureBlackbox Forum