Xml.XMLDoc.TXMLNode.NextSibling

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function NextSibling: IXMLNode;

C++

Xml::Xmlintf::_di_IXMLNode __fastcall NextSibling();

Properties

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

Description

Returns the next child of this node's parent.

Use the TXMLNode object's IXMLNode interface to call the protected NextSibling method. NextSibling returns the node that follows this one in the parent node's ChildNodes property list.

If this node is the last node in its parent's child list, NextSibling returns nil.

See Also