Xml.XMLIntf.IXMLNodeCollection.Remove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Remove(const Node: IXMLNode): Integer;

C++

virtual int __fastcall Remove(const _di_IXMLNode Node) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLNodeCollection

Description

Removes one of the repeating child nodes from this node.

Remove removes a specified child node from the collection of repeating child nodes. It removes the node from both the collection, and from the ChildNodes property, which lists all children of this node.

Node is the interface of the child to remove. It must represent on of the repeating child nodes.

To remove a child that is not one of the repeating child nodes, use the ChildNodes property instead.

See Also