Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.AppendChild

TElXMLDOMNode     See also     


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


Adds the specified node to the end of the list of child nodes, of this node.

Declaration

[C#]
    TElXMLDOMNode AppendChild(TElXMLDOMNode NewChild);
    TElXMLDOMNode AppendChild(TElXMLDOMNode NewChild, bool DisablePrefixUpdate);

[VB.NET]
    Function AppendChild(ByVal NewChild As TElXMLDOMNode) As TElXMLDOMNode
    Function AppendChild(ByVal NewChild As TElXMLDOMNode, ByVal DisablePrefixUpdate As Boolean) As TElXMLDOMNode

[Pascal]
    function AppendChild(NewChild : TElXMLDOMNode) : TElXMLDOMNode;

[PHP]
    TElXMLDOMNode AppendChild(TElXMLDOMNode $NewChild)
    TElXMLDOMNode AppendChild(TElXMLDOMNode $NewChild, bool $DisablePrefixUpdate)

[Java]
    TElXMLDOMNode appendChild(TElXMLDOMNode NewChild, boolean DisablePrefixUpdate);
    TElXMLDOMNode appendChild(TElXMLDOMNode NewChild);

Parameters

  • NewChild - The node to be added.
  • DisablePrefixUpdate - ...

Description

    Use this method to add a node to the end of the child nodes list. The method returns the reference to the added node.

See also:     ChildNodes     RemoveChild    

Discuss this help topic in SecureBlackbox Forum