Xml.xmldom.IDOMNode.nextSibling

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

property nextSibling: IDOMNode read get_nextSibling;

C++

__property _di_IDOMNode nextSibling = {read=_scw_get_nextSibling};

Properties

Type Visibility Source Unit Parent
property public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMNode

Description

Represents the next child of this node's parent.

Use nextSibling to obtain the IDOMNode interface of the node that immediately follows this node. If the node's parent does not have any more child nodes after this one, the value of nextSibling is nil (Delphi) or NULL (C++).

The nextSibling property is useful for iterating through all the children of a node.

See Also