Xml.XMLDoc.TXMLNodeCollection.Delete

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Delete(Index: Integer);

C++

void __fastcall Delete(int Index);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNodeCollection

Description

Removes one of the repeating child nodes from this node.

Use the TXMLNodeCollection object's IXMLNodeCollection interface to call the protected Delete method. Delete removes a specified child node from this node.

Index identifies the child to remove. It is the index of the child in the list of repeating child nodes (The List property, not the ChildNodes property). The index 0 represents the first repetition, 1 represents the second repetition, and so on.

See Also